public class GreaterThan extends ComparativeOperator
| Constructor and Description | 
|---|
GreaterThan(Expression lhs,
           Expression rhs)
Greater than. 
 | 
GreaterThan(ExtList children)
Greater than. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getPrecedence()
Get precedence. 
 | 
void | 
prettyPrint(PrettyPrinter p)
Pretty printing the source element. 
 | 
void | 
visit(Visitor v)
calls the corresponding method of a visitor in order to
 perform some action/transformation on this element 
 | 
getArity, getKeYJavaType, getKeYJavaType, getNotationgetArguments, getChildAt, getChildCount, getExpressionAt, getExpressionCount, getFirstElement, getFirstElementIncludingBlocks, getLastElement, isLeftAssociative, isToBeParenthesized, precedes, reuseSignaturecompatibleBlockSize, computeHashCode, equals, equalsModRenaming, getArrayPos, match, matchChildrengetComments, hashCode, prettyPrintMaingetEndPosition, getParentClass, getPositionInfo, getRelativePosition, getStartPosition, setParentClass, toSource, toString, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetComments, matchequalsModRenaming, getEndPosition, getPositionInfo, getRelativePosition, getStartPositionpublic GreaterThan(ExtList children)
children - an ExtList with all children of this node
      the first children in list will be the one on the left
      side, the second the one on the  right side.public GreaterThan(Expression lhs, Expression rhs)
lhs - the expression that is checked to be greater than rhsrhs - the expression that is checked to be less than lhspublic int getPrecedence()
getPrecedence in class Operatorpublic void visit(Visitor v)
v - the Visitorpublic void prettyPrint(PrettyPrinter p) throws java.io.IOException
JavaSourceElementprettyPrint in interface SourceElementprettyPrint in class JavaProgramElementp - a pretty printer.java.io.IOException - occasionally thrown.