ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/owl/trunk/proteinstructure/IntervalSet.java
Revision: 405
Committed: Tue Nov 20 16:37:54 2007 UTC (16 years, 11 months ago) by duarte
File size: 288 byte(s)
Log Message:
Alignment and PairwiseAlignmentConverter now using Interval, IntervalSet and TreeSet<Integer> to replace Edge, EdgeSet and NodeSet
New class IntervalSet
Line File contents
1 package proteinstructure;
2
3 import java.util.TreeSet;
4
5 /**
6 * Class representing a unique, ordered (according to
7 * ordering define in Interval.compareTo) set of intervals
8 *
9 */
10 public class IntervalSet extends TreeSet<Interval>{
11
12 private static final long serialVersionUID = 1L;
13
14
15 }