| |
|
| java.lang.Object com.jeta.forms.store.bean.DefaultBeanDeserializer
Method Summary | |
public Component | createBean() Creates an unitialized Java Bean component using the properties memento
associated with this deserializer. | public PropertiesMemento | getProperties() Returns the PropertiesMemento object that is used to create and
initialize java bean instances. | public void | initializeBean(JETABean jbean) Sets the property values of a java bean using the PropertiesMemento
contained by this deserializer. |
DefaultBeanDeserializer | public DefaultBeanDeserializer(PropertiesMemento memento)(Code) | | Creates a DefaultBeanDeserializer instance with the
specified PropertiesMemento object.
Parameters: memento - the properties memento that will be used to create andinitialize java beans. |
createBean | public Component createBean() throws FormException(Code) | | Creates an unitialized Java Bean component using the properties memento
associated with this deserializer.
a default Java Bean component. |
getProperties | public PropertiesMemento getProperties()(Code) | | Returns the PropertiesMemento object that is used to create and
initialize java bean instances.
the properties memento associated with this deserializer. |
initializeBean | public void initializeBean(JETABean jbean) throws FormException(Code) | | Sets the property values of a java bean using the PropertiesMemento
contained by this deserializer. Both standard and custom property values
are set.
Parameters: jbean - the container for the Java bean that will be intialize |
|
|
|