/******************************************************************************* * Copyright (c) 2008 Hallvard Traetteberg. * 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: * Hallvard Traetteberg - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id: StylesPackage.java,v 1.2 2009/05/07 15:10:42 pwebster Exp $ */ package org.eclipse.e4.tm.swt.styles; import org.eclipse.emf.ecore.EDataType; 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 org.org.eclipse.e4.tm.swt.styles.StylesFactory * @model kind="package" * @generated */ public interface StylesPackage extends EPackage { /** * The package name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNAME = "styles"; /** * The package namespace URI. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_URI = "http://www.eclipse.org/e4/swt/styles.ecore"; /** * The package namespace name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_PREFIX = "swt.styles"; /** * The singleton instance of the package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ StylesPackage eINSTANCE = org.eclipse.e4.tm.swt.styles.impl.StylesPackageImpl.init(); /** * The meta object id for the '<em>Swt Constant</em>' data type. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see java.lang.String * @see org.eclipse.e4.tm.swt.styles.impl.StylesPackageImpl#getSwtConstant() * @generated */ int SWT_CONSTANT = 0; /** * Returns the meta object for data type '{@link java.lang.String <em>Swt Constant</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for data type '<em>Swt Constant</em>'. * @see java.lang.String * @model instanceClass="java.lang.String" * @generated */ EDataType getSwtConstant(); /** * 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 */ StylesFactory getStylesFactory(); /** * <!-- 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 '<em>Swt Constant</em>' data type. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see java.lang.String * @see org.eclipse.e4.tm.swt.styles.impl.StylesPackageImpl#getSwtConstant() * @generated */ EDataType SWT_CONSTANT = eINSTANCE.getSwtConstant(); } } //StylesPackage