KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > fulltext > common > FullTextByteParser


1 package com.daffodilwoods.daffodildb.server.sql99.fulltext.common;
2
3 import com.daffodilwoods.fulltext.common._FullTextDocumentParser;
4 import com.daffodilwoods.fulltext.common._Tokenizer;
5
6 /**
7  * FullTextByteParser do Parsing of document
8  * <p>Title: </p>
9  * <p>Description: </p>
10  * <p>Copyright: Copyright (c) 2003</p>
11  * <p>Company: </p>
12  * @author not attributable
13  * @version 1.0
14  */

15
16 public class FullTextByteParser implements _FullTextDocumentParser{
17
18   public FullTextByteParser() {
19   }
20   /**
21    * This method is used to get tokenizer, which provide functionality to break
22    * the object in to token.
23    * @param obj
24    * @return
25    */

26   public _Tokenizer getTokenizer(Object JavaDoc obj, long start){
27     return new ByteTokenizer(obj, start);
28   }
29
30 }
31
Popular Tags