📄 tagworditem.java
字号:
package com.gftech.ictclas4j.utility;
public class TagWordItem {
int wordLen;
byte[] word;
// the process or information handle of the word
int handle;
// The count which it appear
int frequency;
public int getFrequency() {
return frequency;
}
public void setFrequency(int frequency) {
this.frequency = frequency;
}
public int getHandle() {
return handle;
}
public void setHandle(int handle) {
this.handle = handle;
}
public byte[] getWord() {
return word;
}
public void setWord(byte[] word) {
this.word = word;
}
public int getWordLen() {
return wordLen;
}
public void setWordLen(int wordLen) {
this.wordLen = wordLen;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -