TEIWord.java 345 Bytes
package ipipan.clarin.tei.api.entities;

import java.util.List;

/**
 * Syntactic word - as in ann_words.xml NKJP file.
 *
 * @author mlenart
 */
public interface TEIWord extends TEIWordChild, TEISyntacticEntity {
	String getOrth();

	TEIInterpretation getInterpretation();

	List<TEIWordChild> getChildren();

	List<TEIMorph> getAllMorphs();
}