/** * <copyright> * </copyright> * * $Id$ */ package uima.tcas; import org.eclipse.emf.ecore.EFactory; /** * <!-- begin-user-doc --> * The <b>Factory</b> for the model. * It provides a create method for each non-abstract class of the model. * <!-- end-user-doc --> * @see uima.tcas.TCasPackage * @generated */ public interface TCasFactory extends EFactory { /** * The singleton instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ TCasFactory eINSTANCE = uima.tcas.impl.TCasFactoryImpl.init(); /** * Returns a new object of class '<em>Annotation</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Annotation</em>'. * @generated */ Annotation createAnnotation(); /** * Returns a new object of class '<em>Document Annotation</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Document Annotation</em>'. * @generated */ DocumentAnnotation createDocumentAnnotation(); /** * Returns the package supported by this factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the package supported by this factory. * @generated */ TCasPackage getTCasPackage(); } //TCasFactory