KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.daffodilwoods.fulltext.common;
2
3 /**
4  * <p>Title: _FullTextDocumentParser </p>
5  * <p>Description: This class provides tokeniser to parse
6  * the contents of full-text column.</p>
7  * <p>Copyright: Copyright (c) 2003</p>
8  * <p>Company: </p>
9  * @author not attributable
10  * @version 1.0
11  */

12
13 public interface _FullTextDocumentParser {
14   /**
15    * This method is required to get tokeniser to parse the contents of full-text
16    * column.
17    * @param obj tokeniser to parse user data
18    * @return
19    */

20   _Tokenizer getTokenizer(Object JavaDoc obj, long start);
21 }
22
Popular Tags