<I extends IComponent> UiAgent |
UiAgent.appendChild(Locator locator,
I newChild) |
Adds the specified child component as the last child to the current locator.
|
static UiAgent |
UiAgent.getCurrent() |
Returns the current UiAgent if any.
|
<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 UiAgent |
UiAgent.of(Execution execution) |
Returns a new UiAgent from the given execution, which is activated.
|
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.
|