blob: 215b909598ad1dd5563f4f5c5e487f6a0fa435ae [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: RelationDomainAssignment.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.EssentialOCL.OclExpression;
import org.eclipse.qvt.declarative.emof.EssentialOCL.Variable;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Relation Domain Assignment</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.emof.QVTRelation.RelationDomainAssignment#getValueExp <em>Value Exp</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.QVTRelation.RelationDomainAssignment#getVariable <em>Variable</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.emof.QVTRelation.QVTRelationPackage#getRelationDomainAssignment()
* @model
* @generated
*/
public interface RelationDomainAssignment extends Element {
/**
* Returns the value of the '<em><b>Value Exp</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value Exp</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value Exp</em>' containment reference.
* @see #setValueExp(OclExpression)
* @see org.eclipse.qvt.declarative.emof.QVTRelation.QVTRelationPackage#getRelationDomainAssignment_ValueExp()
* @model containment="true" required="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='domainAssignment'"
* @generated
*/
OclExpression getValueExp();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.QVTRelation.RelationDomainAssignment#getValueExp <em>Value Exp</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value Exp</em>' containment reference.
* @see #getValueExp()
* @generated
*/
void setValueExp(OclExpression value);
/**
* Returns the value of the '<em><b>Variable</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Variable</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Variable</em>' reference.
* @see #setVariable(Variable)
* @see org.eclipse.qvt.declarative.emof.QVTRelation.QVTRelationPackage#getRelationDomainAssignment_Variable()
* @model required="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='domainAssignment'"
* @generated
*/
Variable getVariable();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.QVTRelation.RelationDomainAssignment#getVariable <em>Variable</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Variable</em>' reference.
* @see #getVariable()
* @generated
*/
void setVariable(Variable value);
} // RelationDomainAssignment