/** * <copyright> * </copyright> * * $Id$ */ package edu.isistan.uima.unified.typesystems.srs; import edu.isistan.uima.unified.typesystems.IdentifiableAnnotation; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Document</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link edu.isistan.uima.unified.typesystems.srs.Document#getId <em>Id</em>}</li> * <li>{@link edu.isistan.uima.unified.typesystems.srs.Document#getName <em>Name</em>}</li> * <li>{@link edu.isistan.uima.unified.typesystems.srs.Document#getKind <em>Kind</em>}</li> * </ul> * </p> * * @see edu.isistan.uima.unified.typesystems.srs.SRSPackage#getDocument() * @model * @generated */ public interface Document extends IdentifiableAnnotation { /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see edu.isistan.uima.unified.typesystems.srs.SRSPackage#getDocument_Id() * @model * @generated */ String getId(); /** * Sets the value of the '{@link edu.isistan.uima.unified.typesystems.srs.Document#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see edu.isistan.uima.unified.typesystems.srs.SRSPackage#getDocument_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link edu.isistan.uima.unified.typesystems.srs.Document#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Kind</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Kind</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Kind</em>' attribute. * @see #setKind(String) * @see edu.isistan.uima.unified.typesystems.srs.SRSPackage#getDocument_Kind() * @model * @generated */ String getKind(); /** * Sets the value of the '{@link edu.isistan.uima.unified.typesystems.srs.Document#getKind <em>Kind</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Kind</em>' attribute. * @see #getKind() * @generated */ void setKind(String value); } // Document