Merge branch 'features/JAL-2446NCList' into features/JAL-2526sequenceCursor
[jalview.git] / src / jalview / datamodel / ContiguousI.java
1 package jalview.datamodel;
2
3 public interface ContiguousI
4 {
5   int getBegin(); // todo want long for genomic positions?
6
7   int getEnd();
8 }