![JAR search and dependency download from the Maven repository](/logo.png)
eu.project.ttc.metrics.TextExplanation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of termsuite-core Show documentation
Show all versions of termsuite-core Show documentation
A Java UIMA-based toolbox for multilingual and efficient terminology extraction an multilingual term alignment
package eu.project.ttc.metrics;
public class TextExplanation implements IExplanation {
private String text;
public TextExplanation(String text) {
this.text = text;
}
@Override
public String getText() {
return text;
}
@Override
public String toString() {
return getText();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy