Does MarkableFileInputStreamFactory need to be package private? I am using
it in an addon (modelbuilder-addon), I would like to either move it or make
it a public class. Perhaps I should be using a different class altogether?
I am using it like this
ObjectStream<String> lineStream =
new PlainTextByLineStream(new
MarkableFileInputStreamFactory(params.getAnnotatedTrainingDataFile()),
charset);
ObjectStream<NameSample> sampleStream = new
NameSampleDataStream(lineStream);
where getAnnotatedTrainingDataFile returns a java File object.
thanks