Models the execution of groups of ProcessingResources on a given corpus.
| 20 | * Models the execution of groups of ProcessingResources on a given corpus. |
| 21 | */ |
| 22 | public interface CorpusController extends Controller { |
| 23 | |
| 24 | /** |
| 25 | * Returns the {@link gate.Corpus} used by this |
| 26 | * controller. |
| 27 | */ |
| 28 | public gate.Corpus getCorpus(); |
| 29 | |
| 30 | /** |
| 31 | * Sets the {@link gate.Corpus} which contains the data on which |
| 32 | * the controller is going to run. |
| 33 | */ public void setCorpus(gate.Corpus corpus); |
| 34 | |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected