| org.itsnat.comp.ItsNatTreeStructure
All known Subclasses: org.itsnat.impl.comp.ItsNatTreeStructureDefaultImpl,
Method Summary | |
public Element | getChildListElement(ItsNatTree tree, int row, Element nodeParent) Returns the element containing the child tree nodes of the specified tree node.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. | public Element | getContentElement(ItsNatTree tree, int row, Element nodeParent) Returns the content element of a tree node.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. | public Element | getHandleElement(ItsNatTree tree, int row, Element nodeParent) Returns the handle element of a tree node.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. | public Element | getIconElement(ItsNatTree tree, int row, Element nodeParent) Returns the icon element of a tree node.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. | public Element | getLabelElement(ItsNatTree tree, int row, Element nodeParent) Returns the label element of a tree node. |
getChildListElement | public Element getChildListElement(ItsNatTree tree, int row, Element nodeParent)(Code) | | Returns the element containing the child tree nodes of the specified tree node.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. Default implementation ignores it. Parameters: row - the tree node row (seeing the tree as a list). Parameters: nodeParent - the element containing the tree node markup. Is a hint, if provided should be obtained by calling tree.getItsNatTreeUI().getParentElementFromRow(row) . the element containing the child list. |
getContentElement | public Element getContentElement(ItsNatTree tree, int row, Element nodeParent)(Code) | | Returns the content element of a tree node.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. Default implementation ignores it. Parameters: row - the tree node row (seeing the tree as a list). Parameters: nodeParent - the element containing the tree node markup. Is a hint, if provided should be obtained by calling tree.getItsNatTreeUI().getParentElementFromRow(row) . the content element of the tree node. |
getHandleElement | public Element getHandleElement(ItsNatTree tree, int row, Element nodeParent)(Code) | | Returns the handle element of a tree node.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. Default implementation ignores it. Parameters: row - the tree node row (seeing the tree as a list). Parameters: nodeParent - the element containing the tree node markup. Is a hint, if provided should be obtained by calling tree.getItsNatTreeUI().getParentElementFromRow(row) . the handle element of the tree node. |
getIconElement | public Element getIconElement(ItsNatTree tree, int row, Element nodeParent)(Code) | | Returns the icon element of a tree node.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. Default implementation ignores it. Parameters: row - the tree node row (seeing the tree as a list). Parameters: nodeParent - the element containing the tree node markup. Is a hint, if provided should be obtained by calling tree.getItsNatTreeUI().getParentElementFromRow(row) . the icon element of the tree node. |
getLabelElement | public Element getLabelElement(ItsNatTree tree, int row, Element nodeParent)(Code) | | Returns the label element of a tree node. This element is used to render and edit
the tree node value.
Default implementation delegates to the default
org.itsnat.core.domutil.ElementTreeNodeStructure .
Parameters: tree - the tree component, may be used to provide contextual information. Default implementation ignores it. Parameters: row - the tree node row (seeing the tree as a list). Parameters: nodeParent - the element containing the tree node markup. Is a hint, if provided should be obtained by calling tree.getItsNatTreeUI().getParentElementFromRow(row) . the label element of the tree node. See Also: ItsNatTreeCellRenderer See Also: ItsNatTreeCellEditor See Also: |
|
|