View Javadoc

1   // BSD License (http://www.galagosearch.org/license)
2   package org.galagosearch.tupleflow;
3   
4   import java.io.IOException;
5   
6   /***
7    *
8    * @author trevor
9    */
10  public interface TupleFlowParameters {
11      public Parameters getXML();
12      public TypeReader getTypeReader(String specification) throws IOException;
13      public Processor getTypeWriter(String specification) throws IOException;
14      public Counter getCounter(String name);
15  
16      public boolean readerExists(String specification, String className, String[] order);
17      public boolean writerExists(String specification, String className, String[] order);
18  }