Package com._1c.g5.v8.dt.ql.model
Interface FunctionInvocationExpression
-
- All Superinterfaces:
AbstractExpression
,org.eclipse.emf.ecore.EObject
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
FunctionInvocationExpressionImpl
public interface FunctionInvocationExpression extends AbstractExpression
A representation of the model object 'Function Invocation Expression'.The following features are supported:
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunctionExpression
getFunctionType()
Returns the value of the 'Function Type' reference.org.eclipse.emf.common.util.EList<AbstractExpression>
getParams()
Returns the value of the 'Params' containment reference list.boolean
isDistinct()
Returns the value of the 'Distinct' attribute.void
setDistinct(boolean value)
Sets the value of the 'Distinct
' attribute.void
setFunctionType(FunctionExpression value)
Sets the value of the 'Function Type
' reference.
-
-
-
Method Detail
-
getFunctionType
FunctionExpression getFunctionType()
Returns the value of the 'Function Type' reference.- Returns:
- the value of the 'Function Type' reference.
- See Also:
setFunctionType(FunctionExpression)
,QlPackage.getFunctionInvocationExpression_FunctionType()
-
setFunctionType
void setFunctionType(FunctionExpression value)
Sets the value of the 'Function Type
' reference.- Parameters:
value
- the new value of the 'Function Type' reference.- See Also:
getFunctionType()
-
getParams
org.eclipse.emf.common.util.EList<AbstractExpression> getParams()
Returns the value of the 'Params' containment reference list. The list contents are of typeAbstractExpression
.- Returns:
- the value of the 'Params' containment reference list.
- See Also:
QlPackage.getFunctionInvocationExpression_Params()
-
isDistinct
boolean isDistinct()
Returns the value of the 'Distinct' attribute.- Returns:
- the value of the 'Distinct' attribute.
- See Also:
setDistinct(boolean)
,QlPackage.getFunctionInvocationExpression_Distinct()
-
setDistinct
void setDistinct(boolean value)
Sets the value of the 'Distinct
' attribute.- Parameters:
value
- the new value of the 'Distinct' attribute.- See Also:
isDistinct()
-
-