blob: 914e084e4b1e409ead2b1cee9986ac75ca0a94e7 [file] [log] [blame]
/**
* Copyright (c) 2020 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*/
package org.eclipse.ocl.examples.xtext.idioms;
import org.eclipse.emf.ecore.EPackage;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>EPackage Import</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An EPackageImport supports import of an EPackage so that its EClasses and EStructuralFeatures can be referenced.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.examples.xtext.idioms.EPackageImport#getAs <em>As</em>}</li>
* <li>{@link org.eclipse.ocl.examples.xtext.idioms.EPackageImport#getEPackage <em>EPackage</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.examples.xtext.idioms.IdiomsPackage#getEPackageImport()
* @model
* @generated
*/
public interface EPackageImport
extends IdiomsElement {
/**
* Returns the value of the '<em><b>As</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>As</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>As</em>' attribute.
* @see #setAs(String)
* @see org.eclipse.ocl.examples.xtext.idioms.IdiomsPackage#getEPackageImport_As()
* @model
* @generated
*/
String getAs();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext.idioms.EPackageImport#getAs <em>As</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>As</em>' attribute.
* @see #getAs()
* @generated
*/
void setAs(String value);
/**
* Returns the value of the '<em><b>EPackage</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>EPackage</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>EPackage</em>' reference.
* @see #setEPackage(EPackage)
* @see org.eclipse.ocl.examples.xtext.idioms.IdiomsPackage#getEPackageImport_EPackage()
* @model required="true"
* @generated
*/
EPackage getEPackage();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext.idioms.EPackageImport#getEPackage <em>EPackage</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>EPackage</em>' reference.
* @see #getEPackage()
* @generated
*/
void setEPackage(EPackage value);
} // EPackageImport