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

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

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

import java.util.List;

/**
 * Interface for multiwords.
 *
 * @author 
 */
public interface IMultiWord extends IToken {

    List getTokenIndexes();

    void setTokenIndexes(List tokenIndexes);

    List getTokens();

    void setTokens(List tokens);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy