edu.rice.cs.javalanglevels.tree
Class ExpressionList

java.lang.Object
  extended by edu.rice.cs.javalanglevels.tree.JExpression
      extended by edu.rice.cs.javalanglevels.tree.ExpressionList
All Implemented Interfaces:
JExpressionIF
Direct Known Subclasses:
DimensionExpressionList, ParenthesizedExpressionList, UnparenthesizedExpressionList

public abstract class ExpressionList
extends JExpression

Class ExpressionList, 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 Aug 28 23:01:27 CDT 2011

Constructor Summary
ExpressionList(SourceInfo in_sourceInfo, Expression[] in_expressions)
          Constructs a ExpressionList.
 
Method Summary
protected abstract  int generateHashCode()
           
 Expression[] getExpressions()
           
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.JExpression
getSourceInfo, hashCode
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExpressionList

public ExpressionList(SourceInfo in_sourceInfo,
                      Expression[] in_expressions)
Constructs a ExpressionList.

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

getExpressions

public Expression[] getExpressions()

visit

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

visit

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

outputHelp

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

generateHashCode

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