KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > fulltext > common > _FullTextGenerator


1 package com.daffodilwoods.fulltext.common;
2
3 import com.daffodilwoods.database.resource.DException;
4
5 /**
6  * This Class assists to create the full-text index.
7  * <p>Title: _FullTextGenerator </p>
8  * <p>Description: </p>
9  * <p>Copyright: Copyright (c) 2003</p>
10  * <p>Company: </p>
11  * @author not attributable
12  * @version 1.0
13  */

14 public interface _FullTextGenerator {
15
16   /**
17    * This method provides an interface to create indexes
18    * required for creation of full-text index.
19    * @return
20    * @throws DException
21    */

22   _FullTextCreator getIndexCreator() throws DException;
23
24 }
25
Popular Tags