| java.lang.Object nextapp.echo2.app.update.ClientUpdateManager
ClientUpdateManager | ClientUpdateManager(ApplicationInstance applicationInstance)(Code) | | Creates a new ClientUpdateManager .
Parameters: applicationInstance - the ApplicationInstance being supported |
getApplicationUpdatePropertyValue | Object getApplicationUpdatePropertyValue(String propertyName)(Code) | | Retrieves the value of the application-level property update with the
specified name.
Parameters: propertyName - the name of the property update the value of the property update, or null if none exists |
getComponentUpdate | ClientComponentUpdate getComponentUpdate(Component component)(Code) | | Retrieves the ClientComponentUpdate object representing
the specified Component , or null, if no client updates
have been made to the Component .
Parameters: component - the Component the representing ClientComponentUpdate |
purge | void purge()(Code) | | Purges all updates from the ClientUpdateManager .
|
setApplicationProperty | public void setApplicationProperty(String propertyName, Object propertyValue)(Code) | | Sets an application-level property received from the client.
Parameters: propertyName - the name of the property Parameters: propertyValue - the value of the property |
setComponentAction | public void setComponentAction(Component actionComponent, String actionName, Object actionValue)(Code) | | Sets the action received from the client. The 'action' describes the
client-side update which necessitated the occurrence of this
client-server interaction. The application will be notified of the
action AFTER it has been notified of all other property updates.
Parameters: actionComponent - the action-producing component Parameters: actionName - the name of the action Parameters: actionValue - the value of the action |
setComponentProperty | public void setComponentProperty(Component component, String inputName, Object inputValue)(Code) | | Adds a property update received from the client.
Parameters: component - the updated component Parameters: inputName - the name of the input property Parameters: inputValue - the value of the input property |
|
|