| java.lang.Object nextapp.echo2.app.update.ClientComponentUpdate
ClientComponentUpdate | public class ClientComponentUpdate implements Serializable(Code) | | A representation of all updates made on the client to an individual
component.
|
Method Summary | |
public void | addInput(String inputName, Object inputValue) Adds an input property to the update, describing a single change
to the component's client-side state. | public Component | getComponent() Returns the updated component. | public Iterator | getInputNames() Returns an iterator over the names of all input properties. | public Object | getInputValue(String inputName) Retrieves the new state of the specified input property. | public boolean | hasInput(String inputName) Determines if an input was posted with the specified property name. |
ClientComponentUpdate | ClientComponentUpdate(Component component)(Code) | | Creates a ClientComponentUpdate .
Parameters: component - the updated component |
addInput | public void addInput(String inputName, Object inputValue)(Code) | | Adds an input property to the update, describing a single change
to the component's client-side state.
Parameters: inputName - the name of the input property Parameters: inputValue - the new state of the property |
getComponent | public Component getComponent()(Code) | | Returns the updated component.
the component |
getInputNames | public Iterator getInputNames()(Code) | | Returns an iterator over the names of all input properties.
the Iterator |
getInputValue | public Object getInputValue(String inputName)(Code) | | Retrieves the new state of the specified input property.
Parameters: inputName - the name of the input property the new state |
hasInput | public boolean hasInput(String inputName)(Code) | | Determines if an input was posted with the specified property name.
Parameters: inputName - the input property name true if an input is posted |
|
|