<I extends IComponent> UiAgent |
UiAgent.appendChild(Locator locator,
I newChild) |
Adds the specified child component as the last child to the current locator.
|
<I extends IComponent> UiAgent |
UiAgent.insertAdjacentComponent(Locator locator,
UiAgent.Position position,
I newChild) |
Inserts a given newChild at a given UiAgent.Position relative to the locator component
it is invoked upon.
|
<I extends IComponent> UiAgent |
UiAgent.insertAfterBegin(Locator locator,
I newChild) |
Inserts a given newChild just inside the locator before its first child.
|
<I extends IComponent> UiAgent |
UiAgent.insertAfterEnd(Locator locator,
I newChild) |
Inserts a given newChild after the locator itself.
|
<I extends IComponent> UiAgent |
UiAgent.insertBefore(Locator locator,
I newChild,
int childIndex) |
Inserts the given newChild just inside the locator, before its n-th child.
|
<I extends IComponent> UiAgent |
UiAgent.insertBeforeBegin(Locator locator,
I newChild) |
Inserts a given newChild before the locator itself.
|
<I extends IComponent> UiAgent |
UiAgent.insertBeforeEnd(Locator locator,
I newChild) |
Inserts a given newChild just inside the locator after its last child.
|
static <I extends IComponent> java.util.Collection<JavaScriptValue> |
UiAgentCtrl.redraw(Locator locator,
java.util.Collection<I> children) |
An utilities to create an array of JavaScript objects
( JavaScriptValue ) that can be used
to mount the specified widget at the clients.
|
UiAgent |
UiAgent.remove(Locator locator) |
Removes the given locator component.
|
<I extends IComponent> UiAgent |
UiAgent.replaceChild(Locator locator,
I newChild,
int childIndex) |
Replaces the given newChild just inside the locator with its n-th child.
|
<I extends IComponent> UiAgent |
UiAgent.replaceChildren(Locator locator) |
Removes the existing children of the given locator component.
|
<I extends IComponent> UiAgent |
UiAgent.replaceChildren(Locator locator,
I... children) |
Replaces the existing children of the given locator component with a specified
new set of children IComponent s.
|
<I extends IComponent> UiAgent |
UiAgent.replaceChildren(Locator locator,
java.util.List<I> children) |
Replaces the existing children of the given locator component with a specified
new set of children IComponent s.
|
<I extends IComponent> UiAgent |
UiAgent.replaceWith(Locator locator,
I newComp) |
Replaces the given locator component in the children list of its parent with a given new IComponent .
|
UiAgent |
UiAgent.smartUpdate(Locator locator,
SmartUpdater updater) |
A special smart update to update all the new data in the given updater.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
boolean value) |
A special smart update to update a value in boolean.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
byte value) |
A special smart update to update a value in byte.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
char value) |
A special smart update to update a value in char.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
double value) |
A special smart update to update a value in double.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
float value) |
A special smart update to update a value in float.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
int value) |
A special smart update to update a value in int.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
long value) |
A special smart update to update a value in long.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
java.lang.Object value) |
A special smart update to update a value in Object.
|
static <I extends IComponent> void |
UiAgentCtrl.smartUpdate(Locator locator,
java.lang.String attr,
java.lang.Object value,
boolean append) |
A special smart update to update a value in Object.
|