edu.stanford.nlp.process
Interface ListProcessor

All Known Implementing Classes:
AbstractListProcessor, MaxentTagger, PTBEscapingProcessor, StripTagsProcessor, WordToSentenceProcessor, WordToTaggedWordProcessor

public interface ListProcessor

An interface for things that operate on a List. This is seen as a lighter weight and more general interface than the Processor interface for documents.


Method Summary
 java.util.List process(java.util.List list)
          Take a List (including a Sentence) of input, and return a List that has been processed in some way.
 

Method Detail

process

java.util.List process(java.util.List list)
Take a List (including a Sentence) of input, and return a List that has been processed in some way.