Uses of Interface
edu.uky.rch.ept.xmlSegmentTree.element.position.Position

Packages that use Position
edu.uky.rch.ept.xmlSegmentTree   
edu.uky.rch.ept.xmlSegmentTree.dom   
edu.uky.rch.ept.xmlSegmentTree.element   
edu.uky.rch.ept.xmlSegmentTree.element.position   
 

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

Methods in edu.uky.rch.ept.xmlSegmentTree that return Position
 Position SegmentTree.getLowerBound()
          Get the lower bound of this segment tree.
 Position SegmentTree.getUpperBound()
          Get the upper bound of this segment tree.
 

Methods in edu.uky.rch.ept.xmlSegmentTree with parameters of type Position
 List SegmentTree.findElementsAt(Position location)
          Find all elements that intersect a given position.
 SegmentTree SegmentTree.growUpwards(Position upto)
           
 SegmentTree SegmentTree.growDownwards(Position downto)
           
 void AbstractSegmentTreeVisitor.enter(Position left, Position right)
           
 boolean AbstractSegmentTreeVisitor.preLeft(Position left, Position mid, Position right)
           
 void AbstractSegmentTreeVisitor.postLeft(Position left, Position mid, Position right)
           
 boolean AbstractSegmentTreeVisitor.preRight(Position left, Position mid, Position right)
           
 void AbstractSegmentTreeVisitor.postRight(Position left, Position mid, Position right)
           
 void SegmentTreeVisitor.enter(Position left, Position right)
          Called as a node of the segment tree is entered.
 boolean SegmentTreeVisitor.preLeft(Position left, Position mid, Position right)
          Called just before recursing to the left subtree.
 void SegmentTreeVisitor.postLeft(Position left, Position mid, Position right)
          Called just after recursing to the left subtree.
 boolean SegmentTreeVisitor.preRight(Position left, Position mid, Position right)
          Called just before recursing to the right subtree.
 void SegmentTreeVisitor.postRight(Position left, Position mid, Position right)
          Called just after recursing to the right subtree.
 

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

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

Methods in edu.uky.rch.ept.xmlSegmentTree.dom that return Position
 Position PositionInterval.getStartPosition()
           
 Position PositionInterval.getEndPosition()
           
 Position XText.getStartPosition()
           
 Position XText.getEndPosition()
           
 Position XElement.getStartPosition()
           
 Position XElement.getEndPosition()
           
 

Uses of Position in edu.uky.rch.ept.xmlSegmentTree.element
 

Methods in edu.uky.rch.ept.xmlSegmentTree.element that return Position
 Position SimpleElement.getStart()
           
 Position SimpleElement.getEnd()
           
 Position StringElement.getStart()
           
 Position StringElement.getEnd()
           
 Position Element.getStart()
          Get the beginning of this element.
 Position Element.getEnd()
          Get the endpoint of this element.
abstract  Position AbstractElement.getStart()
           
abstract  Position AbstractElement.getEnd()
           
 

Constructors in edu.uky.rch.ept.xmlSegmentTree.element with parameters of type Position
TagElement(Position start, Position end, String tag, Map attributes)
          Create a new tagged element at the specified position.
TagElement(Position location, String tag, Map attributes)
          Create a new empty tagged element at the specified position.
SimpleElement(Position start, Position end, String tag)
           
SimpleElement(Position location, String tag)
           
StringElement(String str, Position start, Position end)
           
StringElement(char ch, Position start, Position end)
           
 

Uses of Position in edu.uky.rch.ept.xmlSegmentTree.element.position
 

Classes in edu.uky.rch.ept.xmlSegmentTree.element.position that implement Position
 class ImagePosition
           
 class PairPosition
           
 class SimplePosition
           
 

Methods in edu.uky.rch.ept.xmlSegmentTree.element.position that return Position
 Position SimplePosition.next()
           
 Position SimplePosition.previous()
           
 Position SimplePosition.midpoint(Position p)
           
 Position SimplePosition.extend(Position p)
           
 Position PairPosition.next()
           
 Position PairPosition.previous()
           
 Position PairPosition.midpoint(Position p)
           
 Position PairPosition.extend(Position p)
           
 Position Position.next()
          Return the position immediately following this one.
 Position Position.previous()
          Return the position immediately preceding this one.
 Position Position.midpoint(Position p)
          Find the Position midway between this position and another one.
 Position Position.extend(Position p)
          Find the Position the same distance from this position as another position, but on the other side.
 

Methods in edu.uky.rch.ept.xmlSegmentTree.element.position with parameters of type Position
 Position SimplePosition.midpoint(Position p)
           
 Position SimplePosition.extend(Position p)
           
 Position PairPosition.midpoint(Position p)
           
 Position PairPosition.extend(Position p)
           
 Position Position.midpoint(Position p)
          Find the Position midway between this position and another one.
 Position Position.extend(Position p)
          Find the Position the same distance from this position as another position, but on the other side.