mirror of https://github.com/apache/lucene.git
fix confusing smartcn javadoc bug
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@831913 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8be6749a7e
commit
9b0c42a9c1
|
@ -36,12 +36,12 @@ public class SegToken {
|
|||
public char[] charArray;
|
||||
|
||||
/**
|
||||
* start offset into {@link #charArray}
|
||||
* start offset into original sentence
|
||||
*/
|
||||
public int startOffset;
|
||||
|
||||
/**
|
||||
* end offset into {@link #charArray}
|
||||
* end offset into original sentence
|
||||
*/
|
||||
public int endOffset;
|
||||
|
||||
|
@ -64,8 +64,8 @@ public class SegToken {
|
|||
* Create a new SegToken from a character array.
|
||||
*
|
||||
* @param idArray character array containing text
|
||||
* @param start start offset into idArray
|
||||
* @param end end offset of idArray
|
||||
* @param start start offset of SegToken in original sentence
|
||||
* @param end end offset of SegToken in original sentence
|
||||
* @param wordType {@link WordType} of the text
|
||||
* @param weight word frequency
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue