?? sentence.java
字號:
package com.gftech.ictclas4j.bean;
import org.apache.commons.lang.builder.ReflectionToStringBuilder;
public class Sentence {
private String content;
// 是否需要進行分詞.回車換行和空格是不需要的
private boolean isSeg;
public Sentence(){
}
public Sentence(String content){
this.content=content;
}
public Sentence(String content,boolean isSeg){
this.content=content;
this.isSeg=isSeg;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public boolean isSeg() {
return isSeg;
}
public void setSeg(boolean isSeg) {
this.isSeg = isSeg;
}
public String toString() {
return ReflectionToStringBuilder.toString(this);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -