Uses of Interface
org.zkoss.idom.Group
-
Packages that use Group Package Description org.zkoss.idom org.zkoss.idom.impl org.zkoss.idom.input org.zkoss.idom.util -
-
Uses of Group in org.zkoss.idom
Classes in org.zkoss.idom that implement Group Modifier and Type Class Description class
Document
Represents Document which is also W3C/DOM's document, i.e., org.w3c.dom.Document.class
Element
The iDOM element.class
EntityReference
The iDOM entity reference.Methods in org.zkoss.idom that return Group Modifier and Type Method Description Group
Item. getParent()
Gets the parent item.Methods in org.zkoss.idom with parameters of type Group Modifier and Type Method Description void
Item. setParent(Group parent)
Sets the parent item. -
Uses of Group in org.zkoss.idom.impl
Classes in org.zkoss.idom.impl that implement Group Modifier and Type Class Description class
AbstractGroup
A semi-implemented item for group.Methods in org.zkoss.idom.impl that return Group Modifier and Type Method Description Group
AbstractItem. getParent()
Methods in org.zkoss.idom.impl with parameters of type Group Modifier and Type Method Description void
AbstractItem. setParent(Group parent)
-
Uses of Group in org.zkoss.idom.input
Fields in org.zkoss.idom.input with type parameters of type Group Modifier and Type Field Description protected java.util.Stack<Group>
SAXHandler. _stack
The Group stack.Methods in org.zkoss.idom.input that return Group Modifier and Type Method Description protected Group
SAXHandler. getTopGroup()
Returns the top group, or null if not available.Methods in org.zkoss.idom.input with parameters of type Group Modifier and Type Method Description protected void
SAXHandler. pushGroup(Group group)
Adds a new group to the current group as a child, and pushes the new group to be the new current group. -
Uses of Group in org.zkoss.idom.util
Methods in org.zkoss.idom.util with parameters of type Group Modifier and Type Method Description static void
IDOMs. dumpTree(java.io.PrintStream s, Group group)
Print a readable tree of the specified group to the specified stream.static void
IDOMs. dumpTree(java.io.PrintWriter s, Group group)
Print a readable tree of the specified group to the specified writer.static void
IDOMs. dumpTree(Group group)
Print a readable tree of the specified group to System.out.static Element
IDOMs. getFirstElement(Group group)
Returns the first child element, or null if no child element at all.
-