Logo

GitLab

Sign in

nkjp / teiapi

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • teiapi
  • ..
  • entities
  • TEIWordChild.java
  • Initial
    ea923f39
    Mateusz Kopeć authored
    2015-07-09 11:07:33 +0200  
    Browse Code »
TEIWordChild.java 330 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package ipipan.clarin.tei.api.entities;

/**
 * An entity that may be a child of TEIWord - that is a target in a tag:
 * 
 * <pre>
 * &lt;ptr target="..."/&gt;
 * </pre>
 *
 * @author mlenart
 */
public interface TEIWordChild extends TEIEntity {
	boolean isWord();

	boolean isMorph();

	TEIMorph asMorph();

	TEIWord asWord();
}