org.annotation.util
Interface TreeComparable

All Superinterfaces:
java.lang.Comparable
All Known Implementing Classes:
Annotation, SortedTreeNode, Span

public interface TreeComparable
extends java.lang.Comparable


Method Summary
 boolean gt(java.lang.Object o)
          Determines whether this is greater than o.
 boolean intersects(java.lang.Object o)
          Determines whether this intersects o.
 boolean lt(java.lang.Object o)
          Determines whether this is less than o.
 boolean subsumes(java.lang.Object o)
          Determines whether this subsumes o.
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

subsumes

public boolean subsumes(java.lang.Object o)
Determines whether this subsumes o. If this equals o then this subsumes o.


intersects

public boolean intersects(java.lang.Object o)
Determines whether this intersects o.


lt

public boolean lt(java.lang.Object o)
Determines whether this is less than o.


gt

public boolean gt(java.lang.Object o)
Determines whether this is greater than o.



Copyright © 2004 Thomas Morton and Jeremy LaCivita. All Rights Reserved.