/** * Copyright (c) 2012-2016 Marsha Chechik, Alessio Di Sandro, Michalis Famelis, * Rick Salay. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Alessio Di Sandro - Implementation. */ package edu.toronto.cs.se.modelepedia.primitive.int_; import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EPackage; /** * <!-- 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 edu.toronto.cs.se.modelepedia.primitive.int_.IntFactory * @model kind="package" * @generated */ public interface IntPackage extends EPackage { /** * The package name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNAME = "int"; /** * The package namespace URI. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_URI = "http://se.cs.toronto.edu/modelepedia/Int"; /** * The package namespace name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_PREFIX = "int"; /** * The singleton instance of the package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ IntPackage eINSTANCE = edu.toronto.cs.se.modelepedia.primitive.int_.impl.IntPackageImpl.init(); /** * The meta object id for the '{@link edu.toronto.cs.se.modelepedia.primitive.int_.impl.IntImpl <em>Int</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see edu.toronto.cs.se.modelepedia.primitive.int_.impl.IntImpl * @see edu.toronto.cs.se.modelepedia.primitive.int_.impl.IntPackageImpl#getInt() * @generated */ int INT = 0; /** * The feature id for the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INT__VALUE = 0; /** * The number of structural features of the '<em>Int</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INT_FEATURE_COUNT = 1; /** * The number of operations of the '<em>Int</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INT_OPERATION_COUNT = 0; /** * Returns the meta object for class '{@link edu.toronto.cs.se.modelepedia.primitive.int_.Int <em>Int</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Int</em>'. * @see edu.toronto.cs.se.modelepedia.primitive.int_.Int * @generated */ EClass getInt(); /** * Returns the meta object for the attribute '{@link edu.toronto.cs.se.modelepedia.primitive.int_.Int#getValue <em>Value</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Value</em>'. * @see edu.toronto.cs.se.modelepedia.primitive.int_.Int#getValue() * @see #getInt() * @generated */ EAttribute getInt_Value(); /** * 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 */ IntFactory getIntFactory(); /** * <!-- 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 edu.toronto.cs.se.modelepedia.primitive.int_.impl.IntImpl <em>Int</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see edu.toronto.cs.se.modelepedia.primitive.int_.impl.IntImpl * @see edu.toronto.cs.se.modelepedia.primitive.int_.impl.IntPackageImpl#getInt() * @generated */ EClass INT = eINSTANCE.getInt(); /** * The meta object literal for the '<em><b>Value</b></em>' attribute feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ EAttribute INT__VALUE = eINSTANCE.getInt_Value(); } } //IntPackage