blob: efbdcf70cf5837fe36fcee46c19f33e4dd74d82d [file] [log] [blame]
/**
* <copyright>
* Copyright (c) 2013 Willink Transformations, University of York, 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
* Adolfo Sanchez-Barbudo (University of York) - Bug397429
* </copyright>
*/
package org.eclipse.qvto.examples.pivot.imperativeocl;
import org.eclipse.emf.common.util.EList;
import org.eclipse.ocl.pivot.OCLExpression;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Assign Exp</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvto.examples.pivot.imperativeocl.AssignExp#getDefaultValue <em>Default Value</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.imperativeocl.AssignExp#isIsReset <em>Is Reset</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.imperativeocl.AssignExp#getLeft <em>Left</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.imperativeocl.AssignExp#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getAssignExp()
* @model
* @generated
*/
public interface AssignExp extends ImperativeExpression {
/**
* Returns the value of the '<em><b>Default Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Default Value</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>Default Value</em>' containment reference.
* @see #setDefaultValue(OCLExpression)
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getAssignExp_DefaultValue()
* @model containment="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='defaultOwner'"
* @generated
*/
OCLExpression getDefaultValue();
/**
* Sets the value of the '{@link org.eclipse.qvto.examples.pivot.imperativeocl.AssignExp#getDefaultValue <em>Default Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Default Value</em>' containment reference.
* @see #getDefaultValue()
* @generated
*/
void setDefaultValue(OCLExpression value);
/**
* Returns the value of the '<em><b>Is Reset</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Reset</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Reset</em>' attribute.
* @see #setIsReset(boolean)
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getAssignExp_IsReset()
* @model dataType="org.eclipse.ocl.pivot.Boolean"
* @generated
*/
boolean isIsReset();
/**
* Sets the value of the '{@link org.eclipse.qvto.examples.pivot.imperativeocl.AssignExp#isIsReset <em>Is Reset</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Reset</em>' attribute.
* @see #isIsReset()
* @generated
*/
void setIsReset(boolean value);
/**
* Returns the value of the '<em><b>Left</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Left</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>Left</em>' containment reference.
* @see #setLeft(OCLExpression)
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getAssignExp_Left()
* @model containment="true" required="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='leftOwner'"
* @generated
*/
OCLExpression getLeft();
/**
* Sets the value of the '{@link org.eclipse.qvto.examples.pivot.imperativeocl.AssignExp#getLeft <em>Left</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Left</em>' containment reference.
* @see #getLeft()
* @generated
*/
void setLeft(OCLExpression value);
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.ocl.pivot.OCLExpression}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</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>Value</em>' containment reference list.
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getAssignExp_Value()
* @model containment="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='valueOwner'"
* @generated
*/
EList<OCLExpression> getValue();
} // AssignExp