Home | History | Annotate | Download | only in openwnn

Lines Matching defs:candidate

28     public String   candidate;
35 /** The attribute of this word when it is assumed a candidate. */
48 * @param candidate The string of word
51 public WnnWord(String candidate, String stroke) {
52 this(0, candidate, stroke, new WnnPOS(), 0, 0);
58 * @param candidate The string of word
62 public WnnWord(String candidate, String stroke, int frequency) {
63 this(0, candidate, stroke, new WnnPOS(), frequency, 0);
69 * @param candidate The string of word
73 public WnnWord(String candidate, String stroke, WnnPOS posTag) {
74 this(0, candidate, stroke, posTag, 0, 0);
80 * @param candidate The string of word
85 public WnnWord(String candidate, String stroke, WnnPOS posTag, int frequency) {
86 this(0, candidate, stroke, posTag, frequency, 0);
93 * @param candidate The string of word
98 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency) {
99 this(id, candidate, stroke, posTag, frequency, 0);
106 * @param candidate The string of word
112 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency, int attribute) {
114 this.candidate = candidate;