org.openxma.dsl.dom.model.FunctionCall Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Function Call'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.FunctionCall#getFunction Function}
* - {@link org.openxma.dsl.dom.model.FunctionCall#getArguments Arguments}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getFunctionCall()
* @model
* @generated
*/
public interface FunctionCall extends Expression {
/**
* Returns the value of the 'Function' attribute.
*
*
* If the meaning of the 'Function' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Function' attribute.
* @see #setFunction(String)
* @see org.openxma.dsl.dom.DomPackage#getFunctionCall_Function()
* @model
* @generated
*/
String getFunction();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.FunctionCall#getFunction Function}' attribute.
*
*
* @param value the new value of the 'Function' attribute.
* @see #getFunction()
* @generated
*/
void setFunction(String value);
/**
* Returns the value of the 'Arguments' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Expression}.
*
*
* If the meaning of the 'Arguments' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Arguments' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getFunctionCall_Arguments()
* @model containment="true"
* @generated
*/
EList getArguments();
} // FunctionCall