Method Summary |
|
public Element | getContentElementAt(int index) Returns the "content" element, this element is used to render below
the associated value of the child element. |
public Element | getElementAt(int index) Returns the child element at the specified index.
Parameters: index - index of the child element to search. |
public ItsNatList | getItsNatList() Returns the associated component object. |
public ItsNatListCellUI | getItsNatListCellUIAt(int index) Returns an object info of the child element at the specified position.
Parameters: index - index of the element to search for. |
public ItsNatListCellUI | getItsNatListCellUIFromNode(Node node) Returns an object info of the child element containing the specified node (or the node
is itself an element of the list).
Parameters: node - the node to search for. |
public int | getLength() Returns the number of child elements. |
public Element | insertElementAt(int index, Object value) Inserts a new child element at the specified position rendering
the specified item value.
Parameters: index - index of the new child element. Parameters: value - the item value to render as markup. |
public boolean | isEmpty() Informs whether the list is empty (no elements). |
public boolean | isUsePatternMarkupToRender() Informs whether the original (saved as pattern) markup is used to render. |
public void | removeAllElements() Removes all child elements. |
public Element | removeElementAt(int index) Removes the specified child element.
Parameters: index - index of the element to remove. |
public void | removeElementRange(int fromIndex, int toIndex) Removes the child elements between the specified indexes. |
public void | setElementValueAt(int index, Object value, boolean isSelected, boolean hasFocus) Renders the specified value into the child element with the given position.
Parameters: index - index of the element. |
public void | setLength(int len) Increases or shrinks the list to fit the new size. |
public void | setUsePatternMarkupToRender(boolean value) Sets whether the original (saved as pattern) markup is used to render. |