ujf.verimag.bip.Core.ActionLanguage.Expressions
Interface UnaryExpression

All Superinterfaces:
Action, Expression
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
 Expression getOperand()
          Returns the value of the 'Operand' containment reference.
 UnaryOperator getOperator()
          Returns the value of the 'Operator' attribute.
 boolean isPostfix()
          Returns the value of the 'Postfix' attribute.
 void setOperand(Expression value)
          Sets the value of the 'Operand' containment reference.
 void setOperator(UnaryOperator value)
          Sets the value of the 'Operator' attribute.
 void setPostfix(boolean value)
          Sets the value of the 'Postfix' attribute.
 

Method Detail

getOperator

UnaryOperator getOperator()
Returns the value of the 'Operator' attribute. The literals are from the enumeration UnaryOperator.

If the meaning of the 'Operator' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Operator' attribute.
See Also:
UnaryOperator, setOperator(UnaryOperator), ExpressionsPackage.getUnaryExpression_Operator()

setOperator

void setOperator(UnaryOperator value)
Sets the value of the 'Operator' attribute.

Parameters:
value - the new value of the 'Operator' attribute.
See Also:
UnaryOperator, getOperator()

getOperand

Expression getOperand()
Returns the value of the 'Operand' containment reference.

If the meaning of the 'Operand' containment reference isn't clear, there really should be more of a description here...

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()

isPostfix

boolean isPostfix()
Returns the value of the 'Postfix' attribute. The default value is "false".

If the meaning of the 'Postfix' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Postfix' attribute.
See Also:
setPostfix(boolean), ExpressionsPackage.getUnaryExpression_Postfix()

setPostfix

void setPostfix(boolean value)
Sets the value of the 'Postfix' attribute.

Parameters:
value - the new value of the 'Postfix' attribute.
See Also:
isPostfix()