blob: 9a57dec2439af5b78efeb76d207bdfcad2432c98 [file] [log] [blame]
/**
* <copyright>
* Copyright (c) 2008 Open Canarias 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:
* A. Sanchez-Barbudo - initial API and implementation
*
* </copyright>
*
* $Id: ModuleImport.java,v 1.2 2009/01/25 23:12:24 radvorak Exp $
*/
package org.eclipse.m2m.qvt.oml.ecore.QVTOperational;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EModelElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Module Import</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModuleImport#getBinding <em>Binding</em>}</li>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModuleImport#getImportedModule <em>Imported Module</em>}</li>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModuleImport#getKind <em>Kind</em>}</li>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModuleImport#getModule <em>Module</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModuleImport()
* @model
* @generated
*/
public interface ModuleImport extends EModelElement {
/**
* Returns the value of the '<em><b>Binding</b></em>' reference list.
* The list contents are of type {@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModelType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Binding</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Binding</em>' reference list.
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModuleImport_Binding()
* @model
* @generated
*/
EList<ModelType> getBinding();
/**
* Returns the value of the '<em><b>Imported Module</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Imported Module</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 Module</em>' reference.
* @see #setImportedModule(Module)
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModuleImport_ImportedModule()
* @model required="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='importingElement'"
* @generated
*/
Module getImportedModule();
/**
* Sets the value of the '{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModuleImport#getImportedModule <em>Imported Module</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Imported Module</em>' reference.
* @see #getImportedModule()
* @generated
*/
void setImportedModule(Module value);
/**
* Returns the value of the '<em><b>Kind</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ImportKind}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Kind</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Kind</em>' attribute.
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ImportKind
* @see #setKind(ImportKind)
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModuleImport_Kind()
* @model
* @generated
*/
ImportKind getKind();
/**
* Sets the value of the '{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModuleImport#getKind <em>Kind</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Kind</em>' attribute.
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ImportKind
* @see #getKind()
* @generated
*/
void setKind(ImportKind value);
/**
* Returns the value of the '<em><b>Module</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.Module#getModuleImport <em>Module Import</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Module</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>Module</em>' container reference.
* @see #setModule(Module)
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModuleImport_Module()
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.Module#getModuleImport
* @model opposite="moduleImport" resolveProxies="false"
* @generated
*/
Module getModule();
/**
* Sets the value of the '{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModuleImport#getModule <em>Module</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Module</em>' container reference.
* @see #getModule()
* @generated
*/
void setModule(Module value);
} // ModuleImport