01 /*
02 * SearchableDataStore.java
03 *
04 * Niraj Aswani, 19/March/07
05 *
06 * $Id: SearchableDataStore.html,v 1.0 2007/03/19 16:22:01 niraj Exp $
07 */
08 package gate.creole.annic;
09
10 import gate.DataStore;
11
12 /**
13 * Datastores want to become indexable and searchable should implement this interface.
14 * @author niraj
15 */
16 public interface SearchableDataStore extends Searchable, DataStore {
17 // it doesn't specify its own methods, may be later when recognized
18 }
|