blob: 6d9cbf15d27341bb5d4c94f0b22835823b2eff7f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2017 Willink Transformations and others.
* 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
/**
*/
package build.test.families2persons.Persons;
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 build.test.families2persons.Persons.PersonsFactory
* @model kind="package"
* @generated
*/
public interface PersonsPackage extends EPackage {
/**
* The package name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String eNAME = "Persons";
/**
* The package namespace URI.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String eNS_URI = "http://www.eclipse.org/qvt/2015/QVTcore/examples/Persons";
/**
* The package namespace name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String eNS_PREFIX = "persons";
/**
* The singleton instance of the package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
PersonsPackage eINSTANCE = build.test.families2persons.Persons.impl.PersonsPackageImpl.init();
/**
* The meta object id for the '{@link build.test.families2persons.Persons.impl.PersonImpl <em>Person</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see build.test.families2persons.Persons.impl.PersonImpl
* @see build.test.families2persons.Persons.impl.PersonsPackageImpl#getPerson()
* @generated
*/
int PERSON = 0;
/**
* The feature id for the '<em><b>Full Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PERSON__FULL_NAME = 0;
/**
* The number of structural features of the '<em>Person</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PERSON_FEATURE_COUNT = 1;
/**
* The number of operations of the '<em>Person</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int PERSON_OPERATION_COUNT = 0;
/**
* The meta object id for the '{@link build.test.families2persons.Persons.impl.MaleImpl <em>Male</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see build.test.families2persons.Persons.impl.MaleImpl
* @see build.test.families2persons.Persons.impl.PersonsPackageImpl#getMale()
* @generated
*/
int MALE = 1;
/**
* The feature id for the '<em><b>Full Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int MALE__FULL_NAME = PERSON__FULL_NAME;
/**
* The number of structural features of the '<em>Male</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int MALE_FEATURE_COUNT = PERSON_FEATURE_COUNT + 0;
/**
* The number of operations of the '<em>Male</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int MALE_OPERATION_COUNT = PERSON_OPERATION_COUNT + 0;
/**
* The meta object id for the '{@link build.test.families2persons.Persons.impl.FemaleImpl <em>Female</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see build.test.families2persons.Persons.impl.FemaleImpl
* @see build.test.families2persons.Persons.impl.PersonsPackageImpl#getFemale()
* @generated
*/
int FEMALE = 2;
/**
* The feature id for the '<em><b>Full Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FEMALE__FULL_NAME = PERSON__FULL_NAME;
/**
* The number of structural features of the '<em>Female</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FEMALE_FEATURE_COUNT = PERSON_FEATURE_COUNT + 0;
/**
* The number of operations of the '<em>Female</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
int FEMALE_OPERATION_COUNT = PERSON_OPERATION_COUNT + 0;
/**
* Returns the meta object for class '{@link build.test.families2persons.Persons.Person <em>Person</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Person</em>'.
* @see build.test.families2persons.Persons.Person
* @generated
*/
EClass getPerson();
/**
* Returns the meta object for the attribute '{@link build.test.families2persons.Persons.Person#getFullName <em>Full Name</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the attribute '<em>Full Name</em>'.
* @see build.test.families2persons.Persons.Person#getFullName()
* @see #getPerson()
* @generated
*/
EAttribute getPerson_FullName();
/**
* Returns the meta object for class '{@link build.test.families2persons.Persons.Male <em>Male</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Male</em>'.
* @see build.test.families2persons.Persons.Male
* @generated
*/
EClass getMale();
/**
* Returns the meta object for class '{@link build.test.families2persons.Persons.Female <em>Female</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>Female</em>'.
* @see build.test.families2persons.Persons.Female
* @generated
*/
EClass getFemale();
/**
* 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
*/
PersonsFactory getPersonsFactory();
/**
* <!-- 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 build.test.families2persons.Persons.impl.PersonImpl <em>Person</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see build.test.families2persons.Persons.impl.PersonImpl
* @see build.test.families2persons.Persons.impl.PersonsPackageImpl#getPerson()
* @generated
*/
EClass PERSON = eINSTANCE.getPerson();
/**
* The meta object literal for the '<em><b>Full Name</b></em>' attribute feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
EAttribute PERSON__FULL_NAME = eINSTANCE.getPerson_FullName();
/**
* The meta object literal for the '{@link build.test.families2persons.Persons.impl.MaleImpl <em>Male</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see build.test.families2persons.Persons.impl.MaleImpl
* @see build.test.families2persons.Persons.impl.PersonsPackageImpl#getMale()
* @generated
*/
EClass MALE = eINSTANCE.getMale();
/**
* The meta object literal for the '{@link build.test.families2persons.Persons.impl.FemaleImpl <em>Female</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see build.test.families2persons.Persons.impl.FemaleImpl
* @see build.test.families2persons.Persons.impl.PersonsPackageImpl#getFemale()
* @generated
*/
EClass FEMALE = eINSTANCE.getFemale();
}
} //PersonsPackage