blob: 0975359e25c37bee6d46a663618d85c099472c77 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Willink Transformations 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
*******************************************************************************/
/**
*/
package example2.classes;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Operation Call Exp</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link example2.classes.OperationCallExp#getOwnedArguments <em>Owned Arguments</em>}</li>
* <li>{@link example2.classes.OperationCallExp#getReferredOperation <em>Referred Operation</em>}</li>
* </ul>
*
* @see example2.classes.ClassesPackage#getOperationCallExp()
* @model
* @generated
*/
public interface OperationCallExp extends CallExp {
/**
* Returns the value of the '<em><b>Owned Arguments</b></em>' containment reference list.
* The list contents are of type {@link example2.classes.Argument}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Arguments</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>Owned Arguments</em>' containment reference list.
* @see example2.classes.ClassesPackage#getOperationCallExp_OwnedArguments()
* @model containment="true"
* annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://cs2as/tests/example2/classes/1.0!OperationCallExp!ownedArguments'"
* @generated
*/
EList<Argument> getOwnedArguments();
/**
* Returns the value of the '<em><b>Referred Operation</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Referred Operation</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Referred Operation</em>' reference.
* @see #setReferredOperation(Operation)
* @see example2.classes.ClassesPackage#getOperationCallExp_ReferredOperation()
* @model annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://cs2as/tests/example2/classes/1.0!OperationCallExp!referredOperation'"
* @generated
*/
Operation getReferredOperation();
/**
* Sets the value of the '{@link example2.classes.OperationCallExp#getReferredOperation <em>Referred Operation</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Referred Operation</em>' reference.
* @see #getReferredOperation()
* @generated
*/
void setReferredOperation(Operation value);
} // OperationCallExp