Uses of Class
com.japisoft.fastparser.node.SimpleNode

Packages that use SimpleNode
com.japisoft.fastparser.dom   
com.japisoft.fastparser.node   
com.japisoft.fastparser.walker   
 

Uses of SimpleNode in com.japisoft.fastparser.dom
 

Subclasses of SimpleNode in com.japisoft.fastparser.dom
 class AttrImpl
          Att
 class CharacterDataImpl
          CharacterData
 class CommentImpl
          Comment
 class DocumentFragmentImpl
          DocumentFragment
 class DocumentImpl
          Document
 class DocumentTypeImpl
          DocumentType : Not implemented
 class ElementImpl
          Element
 class EntityImpl
          Entity
 class EntityReferenceImpl
          EntityReference
 class NodeImpl
          Node
 class NotationImpl
          Notation
 class ProcessingInstructionImpl
          ProcesingInstruction
 class TextImpl
          Text
 

Constructors in com.japisoft.fastparser.dom with parameters of type SimpleNode
AttrImpl(java.lang.String name, SimpleNode ref)
           
NamedNodeMapImpl(SimpleNode n)
           
NodeListImpl(SimpleNode n)
           
NodeListImpl(SimpleNode n, java.lang.String filter)
           
 

Uses of SimpleNode in com.japisoft.fastparser.node
 

Methods in com.japisoft.fastparser.node that return SimpleNode
 SimpleNode SimpleNode.clone(boolean deep)
          Clone the current node, include subchild if deep is true
 SimpleNode SimpleNode.getSimpleParent()
           
 SimpleNode SimpleNode.childAt(int index)
           
 SimpleNode SimpleNode.getNodeForXPathLocation(java.lang.String xpath, boolean resolveAlways)
          This feature is limited to a subset of the XPath set : /tag1[ location ]/tag2...
 

Methods in com.japisoft.fastparser.node with parameters of type SimpleNode
 void SimpleNode.setSimpleParent(SimpleNode node)
          reset the parent node
 void SimpleNode.insertChildNode(int index, SimpleNode node)
          Insert a childnode at the index location
 void SimpleNode.addChildNode(SimpleNode node)
          Insert a new node
 void SimpleNode.removeChildNode(SimpleNode node)
          Remove the following node
 int SimpleNode.childNodeIndex(SimpleNode node)
           
 java.lang.String SimpleNode.getXPathLocation(SimpleNode node)
           
 

Constructors in com.japisoft.fastparser.node with parameters of type SimpleNode
SimpleNode(SimpleNode parent, int type, java.lang.String content)
           
 

Uses of SimpleNode in com.japisoft.fastparser.walker
 

Methods in com.japisoft.fastparser.walker with parameters of type SimpleNode
 boolean AndCriteria.isValid(SimpleNode node)
           
 boolean AttributeCriteria.isValid(SimpleNode node)
           
 boolean NamespaceCriteria.isValid(SimpleNode node)
           
 boolean NodeNameCriteria.isValid(SimpleNode node)
           
 boolean NotCriteria.isValid(SimpleNode node)
           
 boolean OrCriteria.isValid(SimpleNode node)
           
 boolean TextCriteria.isValid(SimpleNode node)
           
 boolean ValidCriteria.isValid(SimpleNode node)
           
 

Constructors in com.japisoft.fastparser.walker with parameters of type SimpleNode
TreeWalker(SimpleNode node)
          Reference node.