Uses of Interface
com.smallx.xml.infoset.Child

Packages that use Child
com.smallx.xml.infoset   
com.smallx.xml.infoset.memory   
com.smallx.xml.infoset.util   
com.smallx.xml.xslt.xt.xpath   
 

Uses of Child in com.smallx.xml.infoset
 

Subinterfaces of Child in com.smallx.xml.infoset
 interface Characters
           
 interface Comment
          This interface represents an XML comment.
 interface Document
          This interface represents an XML document.
 interface Element
          This interface represents an XML element.
 interface Parent
          This interface represents a node that is a parent.
 interface ProcessingInstruction
          This interface represents a processing instruction.
 

Methods in com.smallx.xml.infoset that return Child
 Child Child.getFollowingSibling()
          Returns the following sibling of this node.
 Child Child.getPrecedingSibling()
          Returns the preceeding sibling to this node.
 Child Element.insertDataBefore(int index, java.lang.Object data)
          Inserts a data object into the children content.
 Child Element.insertCharactersBefore(int index, java.lang.String value)
          Inserts a data object into the children content.
 Child ItemConstructor.createCharacters(java.lang.String value)
          Creates a parentless data child item.
 Child ItemConstructor.createCharacters(char[] value, int start, int len)
          Creates a parentless data child item.
 Child ItemConstructor.createProcessingInstruction(Name name, java.lang.String value)
           
 Child ItemConstructor.createProcessingInstruction(Name name, char[] value, int start, int len)
           
 Child ItemConstructor.createComment(java.lang.String value)
           
 Child ItemConstructor.createComment(char[] value, int start, int len)
           
 Child Parent.getChildAt(int index)
          Returns the child at the specified index.
 

Methods in com.smallx.xml.infoset with parameters of type Child
 void Parent.removeChild(Child n)
          Removes a child by node identity.
 void Parent.appendChild(Child n)
          Appends a child to the parents children list.
 void Parent.insertChildBefore(int index, Child n)
          Inserts a child at the specified index.
 void Parent.swapChild(Child oldChild, Child newChild)
          Swaps a child
 

Uses of Child in com.smallx.xml.infoset.memory
 

Classes in com.smallx.xml.infoset.memory that implement Child
 class MemoryCharacters
           
 class MemoryComment
           
 class MemoryDocument
           
 class MemoryElement
           
 class MemoryParent
           
 class MemoryProcessingInstruction
           
 

Methods in com.smallx.xml.infoset.memory that return Child
 Child MemoryCharacters.getFollowingSibling()
           
 Child MemoryCharacters.getPrecedingSibling()
           
 Child MemoryComment.getFollowingSibling()
           
 Child MemoryComment.getPrecedingSibling()
           
 Child MemoryDocument.getFollowingSibling()
           
 Child MemoryDocument.getPrecedingSibling()
           
 Child MemoryElement.insertDataBefore(int index, java.lang.Object data)
           
 Child MemoryElement.insertCharactersBefore(int index, java.lang.String value)
           
 Child MemoryElement.getFollowingSibling()
           
 Child MemoryElement.getPrecedingSibling()
           
 Child MemoryParent.getChildAt(int index)
           
 Child MemoryProcessingInstruction.getFollowingSibling()
           
 Child MemoryProcessingInstruction.getPrecedingSibling()
           
 

Methods in com.smallx.xml.infoset.memory with parameters of type Child
 void MemoryDocument.appendChild(Child n)
           
 void MemoryParent.removeChild(Child n)
           
 void MemoryParent.appendChild(Child n)
           
 void MemoryParent.insertChildBefore(int index, Child n)
           
 void MemoryParent.swapChild(Child oldChild, Child newChild)
           
 

Uses of Child in com.smallx.xml.infoset.util
 

Constructors in com.smallx.xml.infoset.util with parameters of type Child
SiblingIterator(Child sibling, boolean forward)
          Creates a new instance of SiblingIterator
 

Uses of Child in com.smallx.xml.xslt.xt.xpath
 

Constructors in com.smallx.xml.xslt.xt.xpath with parameters of type Child
FollowingSiblingIterator(Child child)
          Creates a new instance of FollowingSiblingIterator
PrecedingSiblingIterator(Child child)
          Creates a new instance of PrecedingSiblingIterator