| |
|
| java.lang.Object com.jeta.forms.store.AbstractJETAPersistable com.jeta.forms.store.memento.ComponentMemento
All known Subclasses: com.jeta.forms.store.memento.BeanMemento, com.jeta.forms.store.memento.FormMemento,
ComponentMemento | public class ComponentMemento extends AbstractJETAPersistable (Code) | | Defines an interface to describe a GridComponent's state in the form
designer. Different type of GridComponents have different mementos.
author: Jeff Tassin |
VERSION | final public static int VERSION(Code) | | |
serialVersionUID | final static long serialVersionUID(Code) | | |
getCellConstraintsMemento | public CellConstraintsMemento getCellConstraintsMemento()(Code) | | Returns the cell constraints for the component specified by this memento.
If this component represents a top level form, then this is null.
the cell constraints for this component. |
getComponentClass | public String getComponentClass()(Code) | | Returns the class name of the GridComponent specified by this memento.
For example: com.jeta.forms.gui.form.StandardComponent
the class name of the GridComponent that this memento represents. |
print | public void print()(Code) | | Method used only for testing
|
setCellConstraints | public void setCellConstraints(CellConstraints cellConstraints)(Code) | | Sets the CellConstraints assigned to the grid component associated with
this memento.
Parameters: cellConstraints - the CellConstraints to set. |
setCellConstraintsMemento | public void setCellConstraintsMemento(CellConstraintsMemento cellConstraints)(Code) | | Sets the CellConstraints memento which defines the CellConstraints state
assigned to the grid component associated with this memento.
Parameters: cellConstraints - the CellConstraints to set. |
setComponentClass | public void setComponentClass(String componentClass)(Code) | | Sets the GridComponent class name associated with this memento.
Parameters: componentClass - the class name of the GridComponent. |
|
|
|