edu.rice.cs.javalanglevels.tree
Class PostfixIncrementExpression

java.lang.Object
  extended by edu.rice.cs.javalanglevels.tree.JExpression
      extended by edu.rice.cs.javalanglevels.tree.Expression
          extended by edu.rice.cs.javalanglevels.tree.UnaryExpression
              extended by edu.rice.cs.javalanglevels.tree.IncrementExpression
                  extended by edu.rice.cs.javalanglevels.tree.PostfixIncrementExpression
All Implemented Interfaces:
ForConditionI, JExpressionIF, VariableInitializerI
Direct Known Subclasses:
NegativePostfixIncrementExpression, PositivePostfixIncrementExpression

public abstract class PostfixIncrementExpression
extends IncrementExpression

Class PostfixIncrementExpression, a component of the JExpressionIF composite hierarchy. Note: null is not allowed as a value for any field.

Version:
Generated automatically by ASTGen at Sun Mar 04 23:01:27 CST 2012

Constructor Summary
PostfixIncrementExpression(SourceInfo in_sourceInfo, Expression in_value)
          Constructs a PostfixIncrementExpression.
 
Method Summary
protected abstract  int generateHashCode()
           
abstract  void outputHelp(TabPrintWriter writer)
           
abstract  void visit(JExpressionIFVisitor_void visitor)
           
abstract
<RetType> RetType
visit(JExpressionIFVisitor<RetType> visitor)
           
 
Methods inherited from class edu.rice.cs.javalanglevels.tree.UnaryExpression
getValue
 
Methods inherited from class edu.rice.cs.javalanglevels.tree.JExpression
getSourceInfo, hashCode
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface edu.rice.cs.javalanglevels.tree.JExpressionIF
getSourceInfo
 

Constructor Detail

PostfixIncrementExpression

public PostfixIncrementExpression(SourceInfo in_sourceInfo,
                                  Expression in_value)
Constructs a PostfixIncrementExpression.

Throws:
IllegalArgumentException - If any parameter to the constructor is null.
Method Detail

visit

public abstract <RetType> RetType visit(JExpressionIFVisitor<RetType> visitor)
Specified by:
visit in interface JExpressionIF
Specified by:
visit in class IncrementExpression

visit

public abstract void visit(JExpressionIFVisitor_void visitor)
Specified by:
visit in interface JExpressionIF
Specified by:
visit in class IncrementExpression

outputHelp

public abstract void outputHelp(TabPrintWriter writer)
Specified by:
outputHelp in interface JExpressionIF
Specified by:
outputHelp in class IncrementExpression

generateHashCode

protected abstract int generateHashCode()
Specified by:
generateHashCode in class IncrementExpression