~gregor-middell/collatex/1.0development

« back to all changes in this revision

Viewing changes to collatex/src/main/java/eu/interedition/collatex2/interfaces/IInternalColumn.java

  • Committer: Ronald Haentjens Dekker
  • Date: 2011-02-25 11:15:43 UTC
  • Revision ID: ronald.dekker@huygensinstituut.knaw.nl-20110225111543-76pz2ccgzt5k8a84
[RHD]
- More API cleanups:
- Removed getPosition() method from ICell interface
- Removed getPosition() method from IColumn interface
- Removed getWitnessForSigil method from IVariantGraphVertex interface
- Removed containsWitness(sigil) method from IVariantGraphVertex interface
- Deleted IAlignmentTableVisitor interface... no references anymore
- Deleted IInputPlugin interface... no references anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
import java.util.List;
24
24
 
 
25
//DOUBT ABOUT THE REST OF THE METHODS!
 
26
//TODO: check 0.9.1 branch!
25
27
public interface IInternalColumn {
26
28
 
27
29
  boolean containsWitness(IWitness witness);
34
36
 
35
37
  boolean isMatch(IWitness base, IWitness witness);
36
38
 
37
 
  //DOUBT ABOUT THE REST OF THE METHODS!
38
 
  //TODO: check 0.9.1 branch!
39
 
  int getPosition();
40
 
 
41
39
}