Uses of Interface
edu.uky.rch.ept.xmlSegmentTree.ElementFilter

Packages that use ElementFilter
edu.uky.rch.ept.xmlSegmentTree   
edu.uky.rch.ept.xmlSegmentTree.dom   
 

Uses of ElementFilter in edu.uky.rch.ept.xmlSegmentTree
 

Classes in edu.uky.rch.ept.xmlSegmentTree that implement ElementFilter
 class TagFilter
          An ElementFilter that matches tagged elements with any of a set of tags, and optionally string elements as well.
 

Methods in edu.uky.rch.ept.xmlSegmentTree with parameters of type ElementFilter
 void SegmentTree.traverse(SegmentTreeVisitor v, ElementFilter ef)
          Traverse a segment tree with an element filter, making callbacks to a visitor object.
 org.dom4j.Document SegmentTree.getDocument(ElementFilter filter)
          Get the dom4j Document associated with this segment tree and the specified filter.
 

Uses of ElementFilter in edu.uky.rch.ept.xmlSegmentTree.dom
 

Classes in edu.uky.rch.ept.xmlSegmentTree.dom that implement ElementFilter
 class DTDFilter
           
 

Methods in edu.uky.rch.ept.xmlSegmentTree.dom that return ElementFilter
protected  ElementFilter XDocument.getFilter()
           
 

Constructors in edu.uky.rch.ept.xmlSegmentTree.dom with parameters of type ElementFilter
XDocument(SegmentTree st, ElementFilter filter)
          Create a dom4j representation of the tags stored in a particular segment tree which match the given filter.
XDocument(SegmentTree st, ElementFilter filter, String rootName)
          Create a dom4j representation of the tags stored in a particular segment tree which match the given filter.