TEIWordChild.java
330 Bytes
package ipipan.clarin.tei.api.entities;
/**
* An entity that may be a child of TEIWord - that is a target in a tag:
*
* <pre>
* <ptr target="..."/>
* </pre>
*
* @author mlenart
*/
public interface TEIWordChild extends TEIEntity {
boolean isWord();
boolean isMorph();
TEIMorph asMorph();
TEIWord asWord();
}