Uses of Interface
org.zkoss.idom.Item
-
Packages that use Item Package Description org.zkoss.idom org.zkoss.idom.impl org.zkoss.idom.input -
-
Uses of Item in org.zkoss.idom
Subinterfaces of Item in org.zkoss.idom Modifier and Type Interface Description interfaceGroupRepresents an item might have children.Classes in org.zkoss.idom that implement Item Modifier and Type Class Description classAttributeThe iDOM attribute.classBinaryThe binary item.classCDataThe iDOM CDATA.classCommentThe iDOM Comment.classDocTypeThe iDOM DocType.classDocumentRepresents Document which is also W3C/DOM's document, i.e., org.w3c.dom.Document.classElementThe iDOM element.classEntityReferenceThe iDOM entity reference.classProcessingInstructionThe iDOM processing instruction.classTextThe iDOM Text.Fields in org.zkoss.idom declared as Item Modifier and Type Field Description protected ItemAttribute. _ownerThe owner item.Methods in org.zkoss.idom that return Item Modifier and Type Method Description ItemAttribute. detach()Detach the attribute from its owner, if any.ItemItem. detach()Detach this item from its parent.ItemAttribute. getOwner()Gets the item that owns this attribute.Methods in org.zkoss.idom that return types with arguments of type Item Modifier and Type Method Description java.util.List<Item>Group. detachChildren()Detaches all children and returns them in a list.java.util.List<Item>Group. getChildren()Gets all children.protected java.util.List<Item>Document. newChildren()Methods in org.zkoss.idom with parameters of type Item Modifier and Type Method Description protected voidDocument.ChildArray. onAdd(Item newElement, Item followingElement)protected voidDocument.ChildArray. onRemove(Item item)protected voidDocument.ChildArray. onSet(Item newElement, Item replaced)voidAttribute. setOwner(Item owner)Sets the item that owns this attribute.voidAttribute. setParent(Item parent) -
Uses of Item in org.zkoss.idom.impl
Classes in org.zkoss.idom.impl that implement Item Modifier and Type Class Description classAbstractGroupA semi-implemented item for group.classAbstractItemA semi-implemented item for leaf vertices.classAbstractTextualRepresents a textual item.Fields in org.zkoss.idom.impl with type parameters of type Item Modifier and Type Field Description protected java.util.List<Item>AbstractGroup. _childrenThe list of the children.Methods in org.zkoss.idom.impl that return Item Modifier and Type Method Description ItemAbstractItem. detach()Methods in org.zkoss.idom.impl that return types with arguments of type Item Modifier and Type Method Description java.util.List<Item>AbstractGroup. detachChildren()java.util.List<Item>AbstractGroup. getChildren()protected java.util.List<Item>AbstractGroup. newChildren()Creates a list to hold child vertices.Methods in org.zkoss.idom.impl with parameters of type Item Modifier and Type Method Description protected voidAbstractGroup.ChildArray. onAdd(Item newElement, Item followingElement)protected voidAbstractGroup.ChildArray. onRemove(Item item)protected voidAbstractGroup.ChildArray. onSet(Item newElement, Item replaced) -
Uses of Item in org.zkoss.idom.input
Methods in org.zkoss.idom.input with parameters of type Item Modifier and Type Method Description protected voidSAXHandler. addToCurrentGroup(Item vtx)Adds the item to the current group; also attach the locator.protected voidSAXHandler. attachLocator(Item vtx)Attaches the locator to the item.
-