blob: 4021f024512b2c049220d3349ce101b0274ff977 [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: ModelType.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.EClass;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.ocl.ecore.OCLExpression;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Model Type</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModelType#getAdditionalCondition <em>Additional Condition</em>}</li>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModelType#getConformanceKind <em>Conformance Kind</em>}</li>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModelType#getMetamodel <em>Metamodel</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModelType()
* @model
* @generated
*/
public interface ModelType extends EClass {
/**
* Returns the value of the '<em><b>Additional Condition</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.ocl.ecore.OCLExpression}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Additional Condition</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Additional Condition</em>' containment reference list.
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModelType_AdditionalCondition()
* @model containment="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='condOwner'"
* @generated
*/
EList<OCLExpression> getAdditionalCondition();
/**
* Returns the value of the '<em><b>Conformance Kind</b></em>' attribute.
* The default value is <code>"effective"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Conformance 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>Conformance Kind</em>' attribute.
* @see #setConformanceKind(String)
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModelType_ConformanceKind()
* @model default="effective"
* @generated
*/
String getConformanceKind();
/**
* Sets the value of the '{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModelType#getConformanceKind <em>Conformance Kind</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Conformance Kind</em>' attribute.
* @see #getConformanceKind()
* @generated
*/
void setConformanceKind(String value);
/**
* Returns the value of the '<em><b>Metamodel</b></em>' reference list.
* The list contents are of type {@link org.eclipse.emf.ecore.EPackage}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Metamodel</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>Metamodel</em>' reference list.
* @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getModelType_Metamodel()
* @model required="true"
* @generated
*/
EList<EPackage> getMetamodel();
} // ModelType