Class TeacherEditPanel

All Implemented Interfaces:
IItem<Teacher>, IItemEditor<Teacher>, IItemPanel<Teacher>, ImageObserver, MenuContainer, PropertyChangeListener, Serializable, EventListener, Accessible

public class TeacherEditPanel extends JPanel implements IItemEditor<Teacher>, PropertyChangeListener
Since:
1.0 25 oct. 2008
Author:
Steph GAUDRY
See Also:
Serialized Form
  • Constructor Details

    • TeacherEditPanel

      public TeacherEditPanel()
    • TeacherEditPanel

      public TeacherEditPanel(TeachersPanel teachersPanel)
  • Method Details

    • finalize

      protected void finalize() throws Throwable
      Overrides:
      finalize in class Object
      Throws:
      Throwable
    • setItem

      public void setItem(Teacher item)
      Description copied from interface: IItem
      Give an item to the view
      Specified by:
      setItem in interface IItem<Teacher>
    • 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<Teacher>
    • saveOrUpdateItem

      public Teacher 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<Teacher>
      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<Teacher>
    • getItemName

      public String getItemName()
      Specified by:
      getItemName in interface IItemPanel<Teacher>
      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<Teacher>
      Returns:
      the panel
    • main

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

      public void propertyChange(PropertyChangeEvent evt)
      Specified by:
      propertyChange in interface PropertyChangeListener
    • setLanguage

      protected void setLanguage()
      Since:
      1.0.2-SNAPSHOT (Feb 21, 2009)