javatools.swing.panel
Class SubPanelFiller

java.lang.Object
  |
  +--javatools.swing.panel.SubPanelFiller
Direct Known Subclasses:
AuthorDetailsFiller, ContainerDetailsFiller, DataDetailsFiller, DataSetDetailsFiller, EditorDetailsFiller, ExecutionDetailsFiller, GenreDataFiller, ProgramDetailsFiller, SessionDataFiller, VolumeDetailsFiller

public abstract class SubPanelFiller
extends java.lang.Object

It is an abstract class that will contain the instruction on how to fill subpanels.


Field Summary
protected  javax.swing.JPanel panel
          It is the panel to be filled up.
 
Constructor Summary
SubPanelFiller()
          Creates a new instance of SubPanelFiller
SubPanelFiller(javax.swing.JPanel pPanel)
          Creates a new instance of SubPanelFiller
 
Method Summary
abstract  void fillPanel(java.lang.Object[] IDs)
          Fills the panel.
 void setPanel(javax.swing.JPanel pPanel)
          Sets the panel to be filled up.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

panel

protected javax.swing.JPanel panel
It is the panel to be filled up.

Constructor Detail

SubPanelFiller

public SubPanelFiller()
Creates a new instance of SubPanelFiller


SubPanelFiller

public SubPanelFiller(javax.swing.JPanel pPanel)
Creates a new instance of SubPanelFiller

Parameters:
pPanel - The panel to be filled up.
Method Detail

setPanel

public void setPanel(javax.swing.JPanel pPanel)
Sets the panel to be filled up.

Parameters:
pPanel - The needed panel.

fillPanel

public abstract void fillPanel(java.lang.Object[] IDs)
Fills the panel.

Parameters:
IDs - The IDs of selected objects somewhere else in the application.