| |
|
| java.lang.Object com.jeta.forms.store.memento.StateRequest
StateRequest | public class StateRequest (Code) | | This class is used to pass information to a GridComponent when it is storing
its state. We use this class to provide a level of control over how the state
is stored. For example, we can do a shallow or deep copy of the state. A
shallow copy happens when only the link references to forms are stored. A
deep copy occurs with the full form information is stored for a linked form.
author: Jeff Tassin |
Method Summary | |
public boolean | isDeepCopy() Returns the flag that indicates if we should perform a deep copy on
linked forms. | public boolean | isShallowCopy() Returns the flag that indicates if we should perform a shallow copy on
linked forms. |
StateRequest | public StateRequest()(Code) | | Creates a StateRequest instance with the shallow copy flag
|
StateRequest | public StateRequest(boolean deep_copy)(Code) | | Creates a StateRequest instance with the specified copy
flag
Parameters: deep_copy - set to true if the request is for a deep copy of the formstate. |
isDeepCopy | public boolean isDeepCopy()(Code) | | Returns the flag that indicates if we should perform a deep copy on
linked forms.
the flag that indicates if we should perform a deep copy onlinked forms. |
isShallowCopy | public boolean isShallowCopy()(Code) | | Returns the flag that indicates if we should perform a shallow copy on
linked forms.
the flag that indicates if we should perform a shallow copy onlinked forms. |
|
|
|