/** */ package vm; import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.EReference; /** * <!-- begin-user-doc --> * The <b>Package</b> for the model. * It contains accessors for the meta objects to represent * <ul> * <li>each class,</li> * <li>each feature of each class,</li> * <li>each operation of each class,</li> * <li>each enum,</li> * <li>and each data type</li> * </ul> * <!-- end-user-doc --> * @see vm.VmFactory * @model kind="package" * @generated */ public interface VmPackage extends EPackage { /** * The package name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNAME = "vm"; /** * The package namespace URI. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_URI = "http://vm/1.0"; /** * The package namespace name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_PREFIX = "vm"; /** * The singleton instance of the package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ VmPackage eINSTANCE = vm.impl.VmPackageImpl.init(); /** * The meta object id for the '{@link vm.impl.CellImpl <em>Cell</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see vm.impl.CellImpl * @see vm.impl.VmPackageImpl#getCell() * @generated */ int CELL = 0; /** * The feature id for the '<em><b>Neighbors</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CELL__NEIGHBORS = 0; /** * The feature id for the '<em><b>Val</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CELL__VAL = 1; /** * The number of structural features of the '<em>Cell</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CELL_FEATURE_COUNT = 2; /** * The number of operations of the '<em>Cell</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CELL_OPERATION_COUNT = 0; /** * The meta object id for the '{@link vm.impl.UniverseImpl <em>Universe</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see vm.impl.UniverseImpl * @see vm.impl.VmPackageImpl#getUniverse() * @generated */ int UNIVERSE = 1; /** * The feature id for the '<em><b>Cells</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int UNIVERSE__CELLS = 0; /** * The number of structural features of the '<em>Universe</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int UNIVERSE_FEATURE_COUNT = 1; /** * The number of operations of the '<em>Universe</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int UNIVERSE_OPERATION_COUNT = 0; /** * Returns the meta object for class '{@link vm.Cell <em>Cell</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Cell</em>'. * @see vm.Cell * @generated */ EClass getCell(); /** * Returns the meta object for the reference list '{@link vm.Cell#getNeighbors <em>Neighbors</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Neighbors</em>'. * @see vm.Cell#getNeighbors() * @see #getCell() * @generated */ EReference getCell_Neighbors(); /** * Returns the meta object for the attribute '{@link vm.Cell#getVal <em>Val</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Val</em>'. * @see vm.Cell#getVal() * @see #getCell() * @generated */ EAttribute getCell_Val(); /** * Returns the meta object for class '{@link vm.Universe <em>Universe</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Universe</em>'. * @see vm.Universe * @generated */ EClass getUniverse(); /** * Returns the meta object for the containment reference list '{@link vm.Universe#getCells <em>Cells</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Cells</em>'. * @see vm.Universe#getCells() * @see #getUniverse() * @generated */ EReference getUniverse_Cells(); /** * Returns the factory that creates the instances of the model. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the factory that creates the instances of the model. * @generated */ VmFactory getVmFactory(); /** * <!-- begin-user-doc --> * Defines literals for the meta objects that represent * <ul> * <li>each class,</li> * <li>each feature of each class,</li> * <li>each operation of each class,</li> * <li>each enum,</li> * <li>and each data type</li> * </ul> * <!-- end-user-doc --> * @generated */ interface Literals { /** * The meta object literal for the '{@link vm.impl.CellImpl <em>Cell</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see vm.impl.CellImpl * @see vm.impl.VmPackageImpl#getCell() * @generated */ EClass CELL = eINSTANCE.getCell(); /** * The meta object literal for the '<em><b>Neighbors</b></em>' reference list feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ EReference CELL__NEIGHBORS = eINSTANCE.getCell_Neighbors(); /** * The meta object literal for the '<em><b>Val</b></em>' attribute feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ EAttribute CELL__VAL = eINSTANCE.getCell_Val(); /** * The meta object literal for the '{@link vm.impl.UniverseImpl <em>Universe</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see vm.impl.UniverseImpl * @see vm.impl.VmPackageImpl#getUniverse() * @generated */ EClass UNIVERSE = eINSTANCE.getUniverse(); /** * The meta object literal for the '<em><b>Cells</b></em>' containment reference list feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ EReference UNIVERSE__CELLS = eINSTANCE.getUniverse_Cells(); } } //VmPackage