blob: 262d7ea346e1d23c980825999ce486352ecb3912 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 SAP AG 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:
* SAP AG - initial API and implementation
******************************************************************************
*/
package dataaccess.expressions;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>With Argument</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link dataaccess.expressions.WithArgument#getArgument <em>Argument</em>}</li>
* </ul>
* </p>
*
* @see dataaccess.expressions.ExpressionsPackage#getWithArgument()
* @model abstract="true"
* @generated
*/
public interface WithArgument extends EObject {
/**
* Returns the value of the '<em><b>Argument</b></em>' containment reference.
* It is bidirectional and its opposite is '{@link dataaccess.expressions.Expression#getArgumentOf <em>Argument Of</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Argument</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>Argument</em>' containment reference.
* @see #setArgument(Expression)
* @see dataaccess.expressions.ExpressionsPackage#getWithArgument_Argument()
* @see dataaccess.expressions.Expression#getArgumentOf
* @model opposite="argumentOf" containment="true" resolveProxies="true"
* @generated
*/
Expression getArgument();
/**
* Sets the value of the '{@link dataaccess.expressions.WithArgument#getArgument <em>Argument</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Argument</em>' containment reference.
* @see #getArgument()
* @generated
*/
void setArgument(Expression value);
} // WithArgument