Home | History | Annotate | Download | only in openwnn

Lines Matching defs:string

20  * The information container class of segment in a string.
22 * This class defines information of a segment in a string, such as a character, a word or a clause.
28 /** The string */
29 public String string;
45 * @param str The string
47 public StrSegment(String str) {
57 this(new String(chars), -1, -1);
63 * @param str The string
67 public StrSegment(String str, int from, int to) {
68 this.string = str;