start at ST producer

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4547@1407573 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-11-09 18:17:16 +00:00
parent e2beb69353
commit 1e586a67e3
2 changed files with 3 additions and 2 deletions

View File

@ -19,6 +19,7 @@ package org.apache.lucene.codecs;
import java.io.IOException;
import org.apache.lucene.index.SegmentReadState;
import org.apache.lucene.index.SegmentWriteState;
public abstract class SimpleDocValuesFormat {
@ -30,5 +31,5 @@ public abstract class SimpleDocValuesFormat {
public abstract SimpleDVConsumer fieldsConsumer(SegmentWriteState state) throws IOException;
// nocommit do this:
//public abstract SimpleDVProducer fieldsProducer(SegmentReadState state) throws IOException;
public abstract PerDocProducer fieldsProducer(SegmentReadState state) throws IOException;
}

View File

@ -142,4 +142,4 @@ class SortedBytesDVWriter {
fixedLength = -2;
maxLength = 0;
}
}
}