
it.unitn.disi.nlptools.data.IToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s-match Show documentation
Show all versions of s-match Show documentation
A version of S-Match semantic matching framework for Open Data
The newest version!
package it.unitn.disi.nlptools.data;
import it.unitn.disi.smatch.data.ling.ISense;
import java.util.List;
/**
* Interface to text tokens.
*
* @author Aliaksandr Autayeu
*/
public interface IToken extends ITextSpan {
String getLemma();
void setLemma(String lemma);
String getPOSTag();
void setPOSTag(String posTag);
List getSenses();
void setSenses(List senses);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy