| java.lang.Object nextapp.echo2.webcontainer.PartialUpdateManager
PartialUpdateManager | public class PartialUpdateManager (Code) | | A utility class for rendering a collection of property updates to an
existing HTML representation of a component on the client browser.
|
add | public void add(String propertyName, PartialUpdateParticipant updateParticipant)(Code) | | Adds a PartialUpdateParticipant to handle a given property.
Parameters: propertyName - the name of the property Parameters: updateParticipant - the PartialUpdateParticipant |
canProcess | public boolean canProcess(RenderContext rc, ServerComponentUpdate update)(Code) | | Determines if this PartialUpdateManager has participants
to update all changed properties specified in update .
Parameters: rc - the relevant RenderContext Parameters: update - the update true if this registry is capable of performing all the described property updates |
process | public void process(RenderContext rc, ServerComponentUpdate update)(Code) | | Renders updates to all properties in the provided update .
If the update contains a property for which a participant does not
exist in this registry, the given property is skipped.
Parameters: rc - the relevant RenderContext Parameters: update - the update to process |
|
|