All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.unitn.disi.nlptools.data.ILabel Maven / Gradle / Ivy

The newest version!
package it.unitn.disi.nlptools.data;

import java.util.List;

/**
 * An interface for a short labels.
 *
 * @author 
 */
public interface ILabel extends ITextSpan {

    String getText();

    void setText(String text);

    List getContext();

    void setContext(List context);

    List getTokens();

    void setTokens(List tokens);

    List getMultiWords();

    void setMultiWords(List multiWords);

    String getFormula();

    void setFormula(String formula);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy