/****************************************************************************** * Copyright (c) 2011-2013, Linagora * * 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: * Linagora - initial API and implementation *******************************************************************************/ package com.ebmwebsourcing.petals.services.pojo.pojo; import com.sun.java.xml.ns.jbi.JbiPackage; 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 enum,</li> * <li>and each data type</li> * </ul> * <!-- end-user-doc --> * @see com.ebmwebsourcing.petals.services.pojo.pojo.PojoFactory * @model kind="package" * @generated */ public interface PojoPackage extends EPackage { /** * The package name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNAME = "pojo"; /** * The package namespace URI. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_URI = "http://petals.ow2.org/components/pojo/version-2"; /** * The package namespace name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_PREFIX = "pojo"; /** * The singleton instance of the package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ PojoPackage eINSTANCE = com.ebmwebsourcing.petals.services.pojo.pojo.impl.PojoPackageImpl.init(); /** * The meta object id for the '{@link com.ebmwebsourcing.petals.services.pojo.pojo.impl.PojoProvidesImpl <em>Provides</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see com.ebmwebsourcing.petals.services.pojo.pojo.impl.PojoProvidesImpl * @see com.ebmwebsourcing.petals.services.pojo.pojo.impl.PojoPackageImpl#getPojoProvides() * @generated */ int POJO_PROVIDES = 0; /** * The feature id for the '<em><b>Group</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int POJO_PROVIDES__GROUP = JbiPackage.PROVIDES__GROUP; /** * The feature id for the '<em><b>Other</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int POJO_PROVIDES__OTHER = JbiPackage.PROVIDES__OTHER; /** * The feature id for the '<em><b>Local</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int POJO_PROVIDES__LOCAL = JbiPackage.PROVIDES__LOCAL; /** * The feature id for the '<em><b>Endpoint Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int POJO_PROVIDES__ENDPOINT_NAME = JbiPackage.PROVIDES__ENDPOINT_NAME; /** * The feature id for the '<em><b>Interface Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int POJO_PROVIDES__INTERFACE_NAME = JbiPackage.PROVIDES__INTERFACE_NAME; /** * The feature id for the '<em><b>Service Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int POJO_PROVIDES__SERVICE_NAME = JbiPackage.PROVIDES__SERVICE_NAME; /** * The feature id for the '<em><b>Class Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int POJO_PROVIDES__CLASS_NAME = JbiPackage.PROVIDES_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Provides</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int POJO_PROVIDES_FEATURE_COUNT = JbiPackage.PROVIDES_FEATURE_COUNT + 1; /** * Returns the meta object for class '{@link com.ebmwebsourcing.petals.services.pojo.pojo.PojoProvides <em>Provides</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Provides</em>'. * @see com.ebmwebsourcing.petals.services.pojo.pojo.PojoProvides * @generated */ EClass getPojoProvides(); /** * Returns the meta object for the attribute '{@link com.ebmwebsourcing.petals.services.pojo.pojo.PojoProvides#getClassName <em>Class Name</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Class Name</em>'. * @see com.ebmwebsourcing.petals.services.pojo.pojo.PojoProvides#getClassName() * @see #getPojoProvides() * @generated */ EAttribute getPojoProvides_ClassName(); /** * 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 */ PojoFactory getPojoFactory(); /** * <!-- 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 enum,</li> * <li>and each data type</li> * </ul> * <!-- end-user-doc --> * @generated */ interface Literals { /** * The meta object literal for the '{@link com.ebmwebsourcing.petals.services.pojo.pojo.impl.PojoProvidesImpl <em>Provides</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see com.ebmwebsourcing.petals.services.pojo.pojo.impl.PojoProvidesImpl * @see com.ebmwebsourcing.petals.services.pojo.pojo.impl.PojoPackageImpl#getPojoProvides() * @generated */ EClass POJO_PROVIDES = eINSTANCE.getPojoProvides(); /** * The meta object literal for the '<em><b>Class Name</b></em>' attribute feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ EAttribute POJO_PROVIDES__CLASS_NAME = eINSTANCE.getPojoProvides_ClassName(); } } //PojoPackage