Uses of Class
edu.uky.rch.ept.xmlSegmentTree.SegmentTree

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

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

Methods in edu.uky.rch.ept.xmlSegmentTree that return SegmentTree
protected  SegmentTree SegmentTree.doInsert(Element elem)
          Nondestructively add an element to a SegmentTree without performing checks.
 SegmentTree SegmentTree.insert(Element elem)
          Nondestructively add an element to a SegmentTree.
 SegmentTree SegmentTree.remove(Element elem)
          Nondestructively remove an element from a SegmentTree.
 SegmentTree SegmentTree.growUpwards(Position upto)
           
 SegmentTree SegmentTree.growDownwards(Position downto)
           
static SegmentTree SegmentTree.fromXML(CharSequence xml)
          Create a segment tree from pseudo-XML, possibly with overlapping elements.
 

Constructors in edu.uky.rch.ept.xmlSegmentTree with parameters of type SegmentTree
SegmentTree(SegmentTree left, SegmentTree right, Position leftBound, Position rightBound, ElementSet elements)
          Create a segment tree node with the specified contents.
 

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

Methods in edu.uky.rch.ept.xmlSegmentTree.dom that return SegmentTree
protected  SegmentTree XDocument.getSegmentTree()
           
 

Constructors in edu.uky.rch.ept.xmlSegmentTree.dom with parameters of type SegmentTree
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.
XDocument(SegmentTree st, org.dom4j.DocumentType dt)
          Create a dom4j representation of a segment tree with the specified document type.