/** * Copyright (c) 2011-2012 Eclipse contributors 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 */ package org.eclipse.emf.ecore.xcore; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>XImport Directive</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.ecore.xcore.XImportDirective#getImportedNamespace <em>Imported Namespace</em>}</li> * <li>{@link org.eclipse.emf.ecore.xcore.XImportDirective#getImportedObject <em>Imported Object</em>}</li> * <li>{@link org.eclipse.emf.ecore.xcore.XImportDirective#getPackage <em>Package</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.ecore.xcore.XcorePackage#getXImportDirective() * @model * @generated */ public interface XImportDirective extends XModelElement { /** * Returns the value of the '<em><b>Imported Namespace</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Imported Namespace</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Imported Namespace</em>' attribute. * @see #setImportedNamespace(String) * @see org.eclipse.emf.ecore.xcore.XcorePackage#getXImportDirective_ImportedNamespace() * @model * @generated */ String getImportedNamespace(); /** * Sets the value of the '{@link org.eclipse.emf.ecore.xcore.XImportDirective#getImportedNamespace <em>Imported Namespace</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Imported Namespace</em>' attribute. * @see #getImportedNamespace() * @generated */ void setImportedNamespace(String value); /** * Returns the value of the '<em><b>Imported Object</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Imported Object</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Imported Object</em>' reference. * @see #setImportedObject(EObject) * @see org.eclipse.emf.ecore.xcore.XcorePackage#getXImportDirective_ImportedObject() * @model * @generated */ EObject getImportedObject(); /** * Sets the value of the '{@link org.eclipse.emf.ecore.xcore.XImportDirective#getImportedObject <em>Imported Object</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Imported Object</em>' reference. * @see #getImportedObject() * @generated */ void setImportedObject(EObject value); /** * Returns the value of the '<em><b>Package</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.emf.ecore.xcore.XPackage#getImportDirectives <em>Import Directives</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Package</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Package</em>' container reference. * @see org.eclipse.emf.ecore.xcore.XcorePackage#getXImportDirective_Package() * @see org.eclipse.emf.ecore.xcore.XPackage#getImportDirectives * @model opposite="importDirectives" changeable="false" * @generated */ XPackage getPackage(); } // XImportDirective