/** * <copyright> * </copyright> * * $Id$ */ package edu.isistan.uima.unified.typesystems; import uima.tcas.Annotation; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Identifiable Annotation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link edu.isistan.uima.unified.typesystems.IdentifiableAnnotation#getIdentification <em>Identification</em>}</li> * </ul> * </p> * * @see edu.isistan.uima.unified.typesystems.TypesystemsPackage#getIdentifiableAnnotation() * @model * @generated */ public interface IdentifiableAnnotation extends Annotation { /** * Returns the value of the '<em><b>Identification</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Identification</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Identification</em>' attribute. * @see #setIdentification(String) * @see edu.isistan.uima.unified.typesystems.TypesystemsPackage#getIdentifiableAnnotation_Identification() * @model * @generated */ String getIdentification(); /** * Sets the value of the '{@link edu.isistan.uima.unified.typesystems.IdentifiableAnnotation#getIdentification <em>Identification</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Identification</em>' attribute. * @see #getIdentification() * @generated */ void setIdentification(String value); } // IdentifiableAnnotation