blob: adbb4ce6dc010954000edc074ec72a3ed2fa369d [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;
import org.eclipse.ocl.pivot.Variable;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Instantiation Exp</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvto.examples.pivot.imperativeocl.InstantiationExp#getArgument <em>Argument</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.imperativeocl.InstantiationExp#getExtent <em>Extent</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.imperativeocl.InstantiationExp#getInstantiatedClass <em>Instantiated Class</em>}</li>
* </ul>
*
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getInstantiationExp()
* @model
* @generated
*/
public interface InstantiationExp extends ImperativeExpression {
/**
* Returns the value of the '<em><b>Argument</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>Argument</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>Argument</em>' containment reference list.
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getInstantiationExp_Argument()
* @model containment="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='argOwner'"
* @generated
*/
EList<OCLExpression> getArgument();
/**
* Returns the value of the '<em><b>Extent</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Extent</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Extent</em>' reference.
* @see #setExtent(Variable)
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getInstantiationExp_Extent()
* @model
* @generated
*/
Variable getExtent();
/**
* Sets the value of the '{@link org.eclipse.qvto.examples.pivot.imperativeocl.InstantiationExp#getExtent <em>Extent</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Extent</em>' reference.
* @see #getExtent()
* @generated
*/
void setExtent(Variable value);
/**
* Returns the value of the '<em><b>Instantiated Class</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Instantiated Class</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Instantiated Class</em>' reference.
* @see #setInstantiatedClass(org.eclipse.ocl.pivot.Class)
* @see org.eclipse.qvto.examples.pivot.imperativeocl.ImperativeOCLPackage#getInstantiationExp_InstantiatedClass()
* @model required="true"
* @generated
*/
org.eclipse.ocl.pivot.Class getInstantiatedClass();
/**
* Sets the value of the '{@link org.eclipse.qvto.examples.pivot.imperativeocl.InstantiationExp#getInstantiatedClass <em>Instantiated Class</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Instantiated Class</em>' reference.
* @see #getInstantiatedClass()
* @generated
*/
void setInstantiatedClass(org.eclipse.ocl.pivot.Class value);
} // InstantiationExp