Uses of Class
dochelper.ResultNode

Packages that use ResultNode
dochelper   
 

Uses of ResultNode in dochelper
 

Fields in dochelper declared as ResultNode
private  ResultNode DocumentDefinition._result
           
 

Fields in dochelper with type parameters of type ResultNode
private  java.util.ArrayList<ResultNode> ResultNode._children
          Node Children
 

Methods in dochelper that return ResultNode
 ResultNode FileRecord.execute(java.util.ArrayList<DocPattern> patterns)
          Renders a record using the specified Pattern list.
 ResultNode Record.execute(java.util.ArrayList<DocPattern> patterns)
          Renders a record using the specified Pattern list.
 ResultNode TableRecord.execute(java.util.ArrayList<DocPattern> patterns)
          Renders a record using the specified Pattern list.
 ResultNode URLRecord.execute(java.util.ArrayList<DocPattern> patterns)
          Renders a record using the specified Pattern list.
 ResultNode AbstractTableRecordSet.execute(ResultNode doc)
          Main method of RecordSet.
 ResultNode FileRecordSet.execute(ResultNode doc)
          Main method of FileRecordSet.
 ResultNode RecordSet.execute(ResultNode doc)
          Main method of RecordSet.
 ResultNode URLRecordSet.execute(ResultNode doc)
          Main method of URLRecordSet.
 ResultNode DocPattern.execute(java.lang.String value)
          Executes this pattern for the given value.
 ResultNode ResultNode.find(java.lang.String nodeName)
          Retrieve the ResultNode which _name equals to nodeName.
 ResultNode DocumentDefinition.getDocument()
           
 ResultNode MatchOrderProcessor.operate(ResultNode doc)
          Sorts the tree of ResultNode doc alphabetically.
 ResultNode NaturalOrderParamProcessor.operate(ResultNode doc)
           
 ResultNode Processor.operate(ResultNode doc)
          Performs an operation on a ResultNode tree and returns the resulting tree after the operation.
 

Methods in dochelper that return types with arguments of type ResultNode
 java.util.List<ResultNode> ResultNode.getChildren()
          Return the list of children if any in this node.
 

Methods in dochelper with parameters of type ResultNode
 void ResultNode.addChild(ResultNode node)
          Add a child to this node.
 ResultNode AbstractTableRecordSet.execute(ResultNode doc)
          Main method of RecordSet.
 ResultNode FileRecordSet.execute(ResultNode doc)
          Main method of FileRecordSet.
 void FileRenderer.execute(ResultNode doc)
          Main method of the File Renderer.
 ResultNode RecordSet.execute(ResultNode doc)
          Main method of RecordSet.
 void Renderer.execute(ResultNode doc)
          Main method of the renderer.
 ResultNode URLRecordSet.execute(ResultNode doc)
          Main method of URLRecordSet.
 ResultNode MatchOrderProcessor.operate(ResultNode doc)
          Sorts the tree of ResultNode doc alphabetically.
 ResultNode NaturalOrderParamProcessor.operate(ResultNode doc)
           
 ResultNode Processor.operate(ResultNode doc)
          Performs an operation on a ResultNode tree and returns the resulting tree after the operation.
private  void MatchOrderProcessor.orderTree(ResultNode doc)
           
private  void NaturalOrderParamProcessor.orderTree(ResultNode doc)
           
private  java.lang.String FileRenderer.render(ResultNode node)
          Recursive method to create a String based on the passed in tree.
 void DocumentDefinition.setDocument(ResultNode result)
          Set the root result node.