blob: 1e2ff636c436d98149db3cc202ea391529711ba9 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2007, 2008 E.D.Willink 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:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id: RelationImplementation.java,v 1.1 2008/07/23 09:59:44 qglineur Exp $
*/
package org.eclipse.qvt.declarative.emof.QVTRelation;
import org.eclipse.qvt.declarative.emof.EMOF.Element;
import org.eclipse.qvt.declarative.emof.EMOF.Operation;
import org.eclipse.qvt.declarative.emof.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:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.emof.QVTRelation.RelationImplementation#getImpl <em>Impl</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.QVTRelation.RelationImplementation#getInDirectionOf <em>In Direction Of</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.QVTRelation.RelationImplementation#getRelation <em>Relation</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.emof.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.qvt.declarative.emof.QVTRelation.QVTRelationPackage#getRelationImplementation_Impl()
* @model required="true"
* @generated
*/
Operation getImpl();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.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.qvt.declarative.emof.QVTRelation.QVTRelationPackage#getRelationImplementation_InDirectionOf()
* @model required="true"
* @generated
*/
TypedModel getInDirectionOf();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.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.qvt.declarative.emof.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.qvt.declarative.emof.QVTRelation.QVTRelationPackage#getRelationImplementation_Relation()
* @see org.eclipse.qvt.declarative.emof.QVTRelation.Relation#getOperationalImpl
* @model opposite="operationalImpl"
* @generated
*/
Relation getRelation();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.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