Class StudentEditPanel

All Implemented Interfaces:
IItem<Student>, IItemEditor<Student>, IItemPanel<Student>, ImageObserver, MenuContainer, Serializable, Accessible

public class StudentEditPanel extends JPanel implements IItemEditor<Student>
Since:
1.0 Oct 25, 2008
Author:
Steph GAUDRY
See Also:
Serialized Form
  • Constructor Details

    • StudentEditPanel

      public StudentEditPanel()
    • StudentEditPanel

      public StudentEditPanel(StudentsPanel studentsPanel)
  • Method Details

    • main

      public static void main(String[] args)
      Auto-generated main method to display this JPanel inside a new JFrame.
    • setItem

      public void setItem(Student item)
      Description copied from interface: IItem
      Give an item to the view
      Specified by:
      setItem in interface IItem<Student>
    • data2view

      public void data2view()
      Description copied from interface: IItemEditor
      Gets data from the item object and set the view components with it
      Specified by:
      data2view in interface IItemEditor<Student>
    • saveOrUpdateItem

      public Student saveOrUpdateItem()
      Description copied from interface: IItemEditor
      Calls the persistent layer to save or update the current item.
      This method may be invoked by the ManagementPanel
      Specified by:
      saveOrUpdateItem in interface IItemEditor<Student>
      Returns:
      saved item (the persistent layer will probably set the id if a new item is saved)
    • view2data

      public void view2data()
      Description copied from interface: IItemEditor
      Gets data from the view, and sets the item data with it
      Specified by:
      view2data in interface IItemEditor<Student>
    • getItemName

      public String getItemName()
      Specified by:
      getItemName in interface IItemPanel<Student>
      Returns:
      a user readable name (ie person, actor,...)
    • getPanel

      public JPanel getPanel()
      Description copied from interface: IItemPanel
      Mostly implemented like this :
      public JPanel getPanel(){
              return this;
       }
      because we cannot inherit from JPanel for an interface, but we must insert the implemented class in a container.
      Specified by:
      getPanel in interface IItemPanel<Student>
      Returns:
      the panel