| nextapp.echo2.webcontainer.ActionProcessor
All known Subclasses: nextapp.echo2.webcontainer.syncpeer.WindowPanePeer, nextapp.echo2.webcontainer.syncpeer.TextComponentPeer, nextapp.echo2.webcontainer.syncpeer.ButtonPeer, nextapp.echo2.webcontainer.syncpeer.ListComponentPeer, nextapp.echo2.webcontainer.syncpeer.TablePeer,
ActionProcessor | public interface ActionProcessor (Code) | | An optional interface for ComponentSynchronizePeer s that provides
the capability to receive IMMEDIATE notification of
state updates from the client.
This interface must be implemented by any component that creates
"EchoAction" message parts on the client in a ClientMessage.
See Also: nextapp.echo2.webcontainer.PropertyUpdateProcessor |
Field Summary | |
final public static String | ACTION_NAME The attribute name of XML 'property' elements that specifies
the name of the property. | final public static String | ACTION_VALUE The attribute name of XML 'property' elements that specifies
the value of the property. |
Method Summary | |
public void | processAction(ContainerInstance ci, Component component, Element actionElement) Notifies the ComponentSynchronizePeer that a client action
has occurred.
Parameters: ci - the relevant ContainerInstance Parameters: component - the target Component Parameters: actionElement - the XML element describing the action(the name and value of the action may be obtainedby querying the ACTION_NAME and ACTION_VALUE attribute values. |
ACTION_NAME | final public static String ACTION_NAME(Code) | | The attribute name of XML 'property' elements that specifies
the name of the property.
|
ACTION_VALUE | final public static String ACTION_VALUE(Code) | | The attribute name of XML 'property' elements that specifies
the value of the property. Property elements may instead
pass property data in child XML elements, and in such cases
should not have a 'value' attribute.
|
processAction | public void processAction(ContainerInstance ci, Component component, Element actionElement)(Code) | | Notifies the ComponentSynchronizePeer that a client action
has occurred.
Parameters: ci - the relevant ContainerInstance Parameters: component - the target Component Parameters: actionElement - the XML element describing the action(the name and value of the action may be obtainedby querying the ACTION_NAME and ACTION_VALUE attribute values. |
|
|