Uses of Class
dochelper.DocPattern

Packages that use DocPattern
dochelper   
 

Uses of DocPattern in dochelper
 

Fields in dochelper with type parameters of type DocPattern
private  java.util.ArrayList<DocPattern> AbstractTableRecordSet.patterns
          The patterns that should be matched to the records for this record set.
(package private) static java.util.Hashtable<java.lang.String,DocPattern> DocHelper.patterns
           
private  java.util.ArrayList<DocPattern> FileRecordSet.patterns
           
private  java.util.ArrayList<DocPattern> URLRecordSet.patterns
           
 

Methods in dochelper that return DocPattern
private static DocPattern DocHelper.parsePattern(org.w3c.dom.Element node)
           
 

Methods in dochelper that return types with arguments of type DocPattern
 java.util.ArrayList<DocPattern> FileRecordSet.getPatterns()
          Pattern Accessors + Modifiers
 

Methods in dochelper with parameters of type DocPattern
 void AbstractTableRecordSet.addPattern(DocPattern pattern)
          Add a single pattern to be applied to this record set.
 void FileRecordSet.addPattern(DocPattern pattern)
          Add a single pattern to be applied to this record set.
 void RecordSet.addPattern(DocPattern pattern)
          Add a pattern to be matched to the RecordSet.
 void URLRecordSet.addPattern(DocPattern pattern)
          Add a single pattern to be applied to this record set.
 

Method parameters in dochelper with type arguments of type DocPattern
 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.
 void FileRecordSet.setPatterns(java.util.ArrayList<DocPattern> patterns)