Home | History | Annotate | Download | only in openwnn

Lines Matching defs:frequency

32     public int      frequency;
60 * @param frequency The score of word
62 public WnnWord(String candidate, String stroke, int frequency) {
63 this(0, candidate, stroke, new WnnPOS(), frequency, 0);
83 * @param frequency The score of word
85 public WnnWord(String candidate, String stroke, WnnPOS posTag, int frequency) {
86 this(0, candidate, stroke, posTag, frequency, 0);
96 * @param frequency The score of word
98 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency) {
99 this(id, candidate, stroke, posTag, frequency, 0);
109 * @param frequency The score of word
112 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency, int attribute) {
116 this.frequency = frequency;