/** * <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: OperationalTransformation.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.EStructuralFeature; import org.eclipse.qvt.declarative.ecore.QVTRelation.Relation; import org.eclipse.qvt.declarative.ecore.QVTRelation.RelationalTransformation; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Operational Transformation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.OperationalTransformation#getIntermediateClass <em>Intermediate Class</em>}</li> * <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.OperationalTransformation#getIntermediateProperty <em>Intermediate Property</em>}</li> * <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.OperationalTransformation#getModelParameter <em>Model Parameter</em>}</li> * <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.OperationalTransformation#getRefined <em>Refined</em>}</li> * <li>{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.OperationalTransformation#getRelation <em>Relation</em>}</li> * </ul> * </p> * * @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getOperationalTransformation() * @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='hasModelParameters hasEntryOperation hasSuperClass'" * @generated */ public interface OperationalTransformation extends Module { /** * Returns the value of the '<em><b>Intermediate Class</b></em>' reference list. * The list contents are of type {@link org.eclipse.emf.ecore.EClass}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Intermediate Class</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>Intermediate Class</em>' reference list. * @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getOperationalTransformation_IntermediateClass() * @model annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='transfClient'" * @generated */ EList<EClass> getIntermediateClass(); /** * Returns the value of the '<em><b>Intermediate Property</b></em>' reference list. * The list contents are of type {@link org.eclipse.emf.ecore.EStructuralFeature}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Intermediate Property</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>Intermediate Property</em>' reference list. * @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getOperationalTransformation_IntermediateProperty() * @model annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='tranfClient'" * @generated */ EList<EStructuralFeature> getIntermediateProperty(); /** * Returns the value of the '<em><b>Model Parameter</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.ModelParameter}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Model Parameter</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>Model Parameter</em>' containment reference list. * @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getOperationalTransformation_ModelParameter() * @model containment="true" * annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='module'" * @generated */ EList<ModelParameter> getModelParameter(); /** * Returns the value of the '<em><b>Refined</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Refined</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Refined</em>' reference. * @see #setRefined(RelationalTransformation) * @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getOperationalTransformation_Refined() * @model annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='refinement'" * @generated */ RelationalTransformation getRefined(); /** * Sets the value of the '{@link org.eclipse.m2m.qvt.oml.ecore.QVTOperational.OperationalTransformation#getRefined <em>Refined</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Refined</em>' reference. * @see #getRefined() * @generated */ void setRefined(RelationalTransformation value); /** * Returns the value of the '<em><b>Relation</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.qvt.declarative.ecore.QVTRelation.Relation}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Relation</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>Relation</em>' containment reference list. * @see org.eclipse.m2m.qvt.oml.ecore.QVTOperational.QVTOperationalPackage#getOperationalTransformation_Relation() * @model containment="true" * annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='owner'" * @generated */ EList<Relation> getRelation(); } // OperationalTransformation