blob: 3b41975f08a49fe06f8cc5f1cb5647b5125d0848 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2019 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.qvtd.pivot.qvtrelation;
import org.eclipse.ocl.pivot.Element;
import org.eclipse.ocl.pivot.Operation;
import org.eclipse.qvtd.pivot.qvtbase.TypedModel;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Relation Implementation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.pivot.qvtrelation.RelationImplementation#getImpl <em>Impl</em>}</li>
* <li>{@link org.eclipse.qvtd.pivot.qvtrelation.RelationImplementation#getInDirectionOf <em>In Direction Of</em>}</li>
* <li>{@link org.eclipse.qvtd.pivot.qvtrelation.RelationImplementation#getRelation <em>Relation</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.pivot.qvtrelation.QVTrelationPackage#getRelationImplementation()
* @model
* @generated
*/
public interface RelationImplementation extends Element {
/**
* Returns the value of the '<em><b>Impl</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Impl</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Impl</em>' reference.
* @see #setImpl(Operation)
* @see org.eclipse.qvtd.pivot.qvtrelation.QVTrelationPackage#getRelationImplementation_Impl()
* @model required="true"
* @generated
*/
Operation getImpl();
/**
* Sets the value of the '{@link org.eclipse.qvtd.pivot.qvtrelation.RelationImplementation#getImpl <em>Impl</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Impl</em>' reference.
* @see #getImpl()
* @generated
*/
void setImpl(Operation value);
/**
* Returns the value of the '<em><b>In Direction Of</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>In Direction Of</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>In Direction Of</em>' reference.
* @see #setInDirectionOf(TypedModel)
* @see org.eclipse.qvtd.pivot.qvtrelation.QVTrelationPackage#getRelationImplementation_InDirectionOf()
* @model required="true"
* @generated
*/
TypedModel getInDirectionOf();
/**
* Sets the value of the '{@link org.eclipse.qvtd.pivot.qvtrelation.RelationImplementation#getInDirectionOf <em>In Direction Of</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>In Direction Of</em>' reference.
* @see #getInDirectionOf()
* @generated
*/
void setInDirectionOf(TypedModel value);
/**
* Returns the value of the '<em><b>Relation</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.pivot.qvtrelation.Relation#getOperationalImpl <em>Operational Impl</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Relation</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>Relation</em>' container reference.
* @see #setRelation(Relation)
* @see org.eclipse.qvtd.pivot.qvtrelation.QVTrelationPackage#getRelationImplementation_Relation()
* @see org.eclipse.qvtd.pivot.qvtrelation.Relation#getOperationalImpl
* @model opposite="operationalImpl"
* @generated
*/
Relation getRelation();
/**
* Sets the value of the '{@link org.eclipse.qvtd.pivot.qvtrelation.RelationImplementation#getRelation <em>Relation</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Relation</em>' container reference.
* @see #getRelation()
* @generated
*/
void setRelation(Relation value);
} // RelationImplementation