org.globus.cog.gridface.impl.desktop.interfaces
Interface FormPanel

All Known Implementing Classes:
AbstractFormPanel, FormPanelSet

public interface FormPanel


Field Summary
static int HASHMODE
          uses the format methodName("key",object); where methodName is configurable and default is setAttribute, getAttribute
static int SETTERGETTERMODE
          uses the format getName , setName(String) to access key values for from data
static String UNDISPLAYABLE
           
static String uneditablePREFIX
          Flag to mark String as uneditable
 
Method Summary
 void clear()
           
 void display()
          Place form elements in a container
 void export()
          Uses object used in load to export
 void export(Object updateObject)
          Export panel data to updateObject
 JPanel getPanel()
           
 JScrollPane getScrollContainer()
           
 void load(ArrayList newKeys, Object origObject)
          load keys in newKeys from orgiObject
 

Field Detail

HASHMODE

public static final int HASHMODE
uses the format methodName("key",object); where methodName is configurable and default is setAttribute, getAttribute

See Also:
Constant Field Values

SETTERGETTERMODE

public static final int SETTERGETTERMODE
uses the format getName , setName(String) to access key values for from data

See Also:
Constant Field Values

uneditablePREFIX

public static final String uneditablePREFIX
Flag to mark String as uneditable

See Also:
Constant Field Values

UNDISPLAYABLE

public static final String UNDISPLAYABLE
See Also:
Constant Field Values
Method Detail

display

public void display()
Place form elements in a container


clear

public void clear()

load

public void load(ArrayList newKeys,
                 Object origObject)
load keys in newKeys from orgiObject


export

public void export()
Uses object used in load to export


export

public void export(Object updateObject)
Export panel data to updateObject


getScrollContainer

public JScrollPane getScrollContainer()

getPanel

public JPanel getPanel()