Interface UnaryExpression
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,Expression
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
UnaryExpressionImpl
public interface UnaryExpression extends Expression
A representation of the model object 'Unary Expression'.The following features are supported:
- See Also:
ExpressionsPackage.getUnaryExpression()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Expression
getOperand()
Returns the value of the 'Operand' containment reference.UnaryOperation
getOperation()
Returns the value of the 'Operation' attribute.void
setOperand(Expression value)
Sets the value of the 'Operand
' containment reference.void
setOperation(UnaryOperation value)
Sets the value of the 'Operation
' attribute.-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface com._1c.g5.v8.dt.dcs.expressions.model.Expression
getRetValTypes, getTypes
-
-
-
-
Method Detail
-
getOperation
UnaryOperation getOperation()
Returns the value of the 'Operation' attribute. The literals are from the enumerationUnaryOperation
.- Returns:
- the value of the 'Operation' attribute.
- See Also:
UnaryOperation
,setOperation(UnaryOperation)
,ExpressionsPackage.getUnaryExpression_Operation()
-
setOperation
void setOperation(UnaryOperation value)
Sets the value of the 'Operation
' attribute.- Parameters:
value
- the new value of the 'Operation' attribute.- See Also:
UnaryOperation
,getOperation()
-
getOperand
Expression getOperand()
Returns the value of the 'Operand' containment reference.- Returns:
- the value of the 'Operand' containment reference.
- See Also:
setOperand(Expression)
,ExpressionsPackage.getUnaryExpression_Operand()
-
setOperand
void setOperand(Expression value)
Sets the value of the 'Operand
' containment reference.- Parameters:
value
- the new value of the 'Operand' containment reference.- See Also:
getOperand()
-
-