| de.uka.ilkd.key.java.expression.Operator de.uka.ilkd.key.java.expression.operator.LogicalNot
LogicalNot | public class LogicalNot extends Operator (Code) | | Logical not.
|
LogicalNot | public LogicalNot(ExtList children)(Code) | | Logical not.
Parameters: children - an ExtList with all children of this nodethe first children in list will be the one on the leftside, the second the one on the right side. |
getArity | public int getArity()(Code) | | Get arity.
the int value. |
getNotation | public int getNotation()(Code) | | Get notation.
the int value. |
getPrecedence | public int getPrecedence()(Code) | | Get precedence.
the int value. |
isLeftAssociative | public boolean isLeftAssociative()(Code) | | Checks if this operator is left or right associative. Ordinary
unary operators are right associative.
true , if the operator is left associative,false otherwise. |
visit | public void visit(Visitor v)(Code) | | calls the corresponding method of a visitor in order to
perform some action/transformation on this element
Parameters: v - the Visitor |
|
|