~gregor-middell/collatex/1.0development

« back to all changes in this revision

Viewing changes to collatex/src/main/java/eu/interedition/collatex2/legacy/indexing/NullColumn.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:
10
10
 
11
11
public class NullColumn implements IInternalColumn {
12
12
 
13
 
  private final int position;
14
 
 
15
 
  public NullColumn(final int position) {
16
 
    this.position = position;
 
13
  public NullColumn() {
17
14
  }
18
15
 
19
16
  @Override
22
19
  }
23
20
 
24
21
  @Override
25
 
  public int getPosition() {
26
 
    return position;
27
 
  }
28
 
 
29
 
  @Override
30
22
  public INormalizedToken getToken(final IWitness witness) {
31
23
    return new NullToken();
32
24
  }