
artoria.action.hanlp.Word Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artoria-extend Show documentation
Show all versions of artoria-extend Show documentation
Artoria is a java technology framework based on the facade pattern.
The newest version!
package artoria.action.hanlp;
public class Word {
private String content;
private String nature;
public Word(String content, String nature) {
this.content = content;
this.nature = nature;
}
public Word(String content) {
this.content = content;
}
public Word() {
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getNature() {
return nature;
}
public void setNature(String nature) {
this.nature = nature;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy