KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.daffodilwoods.fulltext.common;
2
3 import com.daffodilwoods.database.resource.DException;
4
5 /**
6  * <p>Title: _FullTextCreator </p>
7  * <p>Description: This interface does the appropriate handling to implement
8  * full-text index on a given column.
9  * </p>
10  * <p>Copyright: Copyright (c) 2003</p>
11  * <p>Company: </p>
12  * @author not attributable
13  * @version 1.0
14  */

15 public interface _FullTextCreator {
16
17   /**
18    * This method creates the internal tables and indexes required for full-text index.
19    * @param tableName full-text enabled table name
20    * @param indexName user defined full-text index name
21    * @param columnName full-text enabled column name
22    * @return string array having internal table names
23    * @throws DException
24    */

25   Object JavaDoc createFullTextIndex(Object JavaDoc tableName,String JavaDoc indexName,String JavaDoc[] columnName) throws DException;
26
27 }
28
Popular Tags