Uses of Class
edu.rice.cs.javalanglevels.tree.SwitchCase

Packages that use SwitchCase
edu.rice.cs.javalanglevels   
edu.rice.cs.javalanglevels.parser   
edu.rice.cs.javalanglevels.tree   
 

Uses of SwitchCase in edu.rice.cs.javalanglevels
 

Methods in edu.rice.cs.javalanglevels with parameters of type SwitchCase
 TypeData BodyTypeChecker.forSwitchCase(SwitchCase that)
          Visit the Braced Body of this SwitchCase, and return the result.
 Void JExpressionIFPrunableDepthFirstVisitor.forSwitchCaseDoFirst(SwitchCase that)
           
 Void JExpressionIFPrunableDepthFirstVisitor.forSwitchCaseOnly(SwitchCase that)
           
 

Uses of SwitchCase in edu.rice.cs.javalanglevels.parser
 

Methods in edu.rice.cs.javalanglevels.parser that return SwitchCase
 SwitchCase JExprParser.SwitchCase()
           
 

Uses of SwitchCase in edu.rice.cs.javalanglevels.tree
 

Subclasses of SwitchCase in edu.rice.cs.javalanglevels.tree
 class DefaultCase
          Class DefaultCase, a component of the JExpressionIF composite hierarchy.
 class LabeledCase
          Class LabeledCase, a component of the JExpressionIF composite hierarchy.
 

Methods in edu.rice.cs.javalanglevels.tree that return SwitchCase
 SwitchCase[] SwitchStatement.getCases()
           
 

Methods in edu.rice.cs.javalanglevels.tree with parameters of type SwitchCase
 RetType JExpressionIFAbstractVisitor.forSwitchCase(SwitchCase that)
           
 void JExpressionIFAbstractVisitor_void.forSwitchCase(SwitchCase that)
           
 void JExpressionIFDepthFirstVisitor_void.forSwitchCaseDoFirst(SwitchCase that)
           
 void JExpressionIFDepthFirstVisitor_void.forSwitchCaseOnly(SwitchCase that)
           
 JExpressionIF JExpressionIFCopyDepthFirstVisitor.forSwitchCaseOnly(SwitchCase that, JExpressionIF code_result)
           
 RetType JExpressionIFDepthFirstVisitor.forSwitchCaseOnly(SwitchCase that, RetType code_result)
           
 

Constructors in edu.rice.cs.javalanglevels.tree with parameters of type SwitchCase
SwitchStatement(SourceInfo in_sourceInfo, Expression in_test, SwitchCase[] in_cases)
          Constructs a SwitchStatement.