Uses of Class
sota.ast.nodes.ASTStatementNode

Packages that use ASTStatementNode
sota.ast.nodes   
sota.lang.java.ast.nodes   
 

Uses of ASTStatementNode in sota.ast.nodes
 

Subclasses of ASTStatementNode in sota.ast.nodes
 class ASTBranchNode
          Superklasse für Knoten mit Verzweigung abgeleitete Klassen: ASTIfNode, ASTIterationNode, ASTSwitchNode, ASTTryNode ..
 class ASTCaseNode
          AST-Knoten für Case-Statements (inkl.
 class ASTCatchNode
          AST-Knoten für Catches in Ausnahme-Blöcke ..
 class ASTIfNode
          AST-Knoten für If- oder If-Else-Anweisung ..
 class ASTIterationNode
          AST-Knoten für iterierende Statements/Blöcke
 class ASTJumpNode
          AST-Knoten für Sprunganweisungen (break, continue, return, throw)
 class ASTSwitchNode
          AST-Knoten für Switch-Statements ..
 class ASTTryNode
          AST-Knoten für Ausnahme-Blöcke ..
 

Fields in sota.ast.nodes declared as ASTStatementNode
protected  ASTStatementNode ASTBranchNode.endNode
           
protected  ASTStatementNode ASTFunctionNode.entryNode
           
protected  ASTStatementNode ASTTryNode.entryOfTryBlock
          Bei der Konstruktion zu setzende Informationen und Verknüpfungen *
protected  ASTStatementNode ASTIfNode.falseNode
           
protected  ASTStatementNode ASTIterationNode.loopNode
           
protected  ASTStatementNode ASTIfNode.trueNode
           
 

Fields in sota.ast.nodes with type parameters of type ASTStatementNode
protected  java.util.HashSet<ASTStatementNode> ASTFunctionNode.setOfExitNodes
           
 

Methods in sota.ast.nodes that return ASTStatementNode
 ASTStatementNode ASTDoNode.getEndNode()
           
 ASTStatementNode ASTBranchNode.getEndNode()
           
 ASTStatementNode ASTFunctionNode.getEntryNode()
           
 ASTStatementNode ASTTryNode.getEntryOfTryBlock()
           
 ASTStatementNode ASTIfNode.getFalseNode()
           
 ASTStatementNode ASTIterationNode.getLoopNode()
           
 ASTStatementNode ASTDoNode.getLoopNode()
           
 ASTStatementNode ASTIfNode.getTrueNode()
           
 

Methods in sota.ast.nodes that return types with arguments of type ASTStatementNode
 java.util.HashSet<ASTStatementNode> ASTFunctionNode.getSetOfExitNodes()
           
 

Methods in sota.ast.nodes with parameters of type ASTStatementNode
 void ASTFunctionNode.addExitNode(ASTStatementNode en)
           
 void ASTBranchNode.setEndNode(ASTStatementNode en)
           
 void ASTFunctionNode.setEntryNode(ASTStatementNode en)
           
 void ASTTryNode.setEntryOfTryBlock(ASTStatementNode n)
           
 void ASTIfNode.setFalseNode(ASTStatementNode fn)
           
 void ASTIterationNode.setLoopNode(ASTStatementNode ln)
           
 void ASTIfNode.setTrueNode(ASTStatementNode tn)
           
 

Uses of ASTStatementNode in sota.lang.java.ast.nodes
 

Subclasses of ASTStatementNode in sota.lang.java.ast.nodes
 class JavaASTCaseNode
          AST-Knoten für Case-Statements.
 class JavaASTCatchNode
          AST-Knoten für Catch-Blocks
 class JavaASTCondStatementNode
          Ermöglicht die Verarbeitung von ternären Operatoren.
 class JavaASTIfNode
          AST-Knoten für If-Anweisung
 class JavaASTIterationNode
          AST-Knoten für iterierende Anweisungen (Schleifen).
 class JavaASTJumpNode
          AST-Knoten für Sprunganweisungen (break, continue, return)
 class JavaASTStatementNode
          AST-Knoten für Statements
 class JavaASTSwitchNode
          AST-Knoten für Switch-Statements
 class JavaASTTryNode
          AST-Knoten für Try-Blöcke