Uses of Class
sota.ast.nodes.ASTFunctionNode

Packages that use ASTFunctionNode
sota.ast.nodes   
sota.ast.util   
sota.gui.graph   
sota.gui.views   
sota.lang.java.ast.nodes   
sota.lang.java.ast.util   
 

Uses of ASTFunctionNode in sota.ast.nodes
 

Fields in sota.ast.nodes declared as ASTFunctionNode
protected  ASTFunctionNode ASTNode.functionNode
           
 

Fields in sota.ast.nodes with type parameters of type ASTFunctionNode
protected  java.util.TreeSet<ASTFunctionNode> FileNode.setOfFunctionNodes
           
protected  java.util.TreeSet<ASTFunctionNode> ASTScopeNode.setOfFunctionNodes
           
 

Methods in sota.ast.nodes that return ASTFunctionNode
 ASTFunctionNode ASTNode.getFunctionNode()
           
 

Methods in sota.ast.nodes that return types with arguments of type ASTFunctionNode
 java.util.TreeSet<ASTFunctionNode> IScopeNode.getFunctionNodes()
           
 java.util.TreeSet<ASTFunctionNode> FileNode.getFunctionNodes()
           
 java.util.TreeSet<ASTFunctionNode> ASTScopeNode.getFunctionNodes()
           
 

Methods in sota.ast.nodes with parameters of type ASTFunctionNode
 void IScopeNode.addFunctionNode(ASTFunctionNode fn)
           
 void FileNode.addFunctionNode(ASTFunctionNode fn)
           
 void ASTScopeNode.addFunctionNode(ASTFunctionNode fn)
           
 void ASTNode.setFunctionNode(ASTFunctionNode functionNode)
           
 

Uses of ASTFunctionNode in sota.ast.util
 

Fields in sota.ast.util declared as ASTFunctionNode
protected static ASTFunctionNode ModBIPathManager.currFunctionNode
           
protected static ASTFunctionNode BIPathManager.currFunctionNode
           
 

Fields in sota.ast.util with type parameters of type ASTFunctionNode
private  java.util.TreeSet<ASTFunctionNode> ASTManager.setOfFunctionNodes
           
private  java.util.TreeSet<ASTFunctionNode> ASTManager.setOfTopLevelFunctionNodes
           
 

Methods in sota.ast.util that return types with arguments of type ASTFunctionNode
 java.util.TreeSet<ASTFunctionNode> ASTManager.getFunctionNodes()
          gibt TreeSet aller Funktionsknoten zurück
 java.util.TreeSet<ASTFunctionNode> ASTManager.getTopLevelFunctionNodes()
           
 

Methods in sota.ast.util with parameters of type ASTFunctionNode
 org.eclipse.draw2d.graph.DirectedGraph ASTManager.buildCFG(ASTFunctionNode fn, GraphManager gcm)
           
protected static Metrics CoverageManager.computeCoverageOfFunction(ASTFunctionNode fn)
          Berechnet die Überdeckungsmaße für eine Funktion
protected static void MetricManager.computeCyclomaticComplexity(ASTFunctionNode fn)
          Berechnet zyklomatische Komplexität für Funktionen.
protected static void MetricManager.computeEssentialComplexity(ASTFunctionNode fn)
          Berechnet essentielle Komplexität für Funktionen.
protected static void MetricManager.computeNrBIPaths(ASTFunctionNode fn)
           
static void BIPathManager.computeNrBIPaths(ASTFunctionNode fn)
          Berechnet die Anzahl der möglichen Pfade für den Boundary-Interior-Pfadtest.
static void ModBIPathManager.computeNrModBIPaths(ASTFunctionNode fn)
          Berechnet die Anzahl der möglichen Pfade für den Modifizierten Boundary-Interior-Pfadtest.
protected static void MetricManager.computeNrModBIPaths(ASTFunctionNode fn)
           
private static java.lang.String ReportCreator.createFunctionLine(ASTFunctionNode c)
           
 

Uses of ASTFunctionNode in sota.gui.graph
 

Fields in sota.gui.graph declared as ASTFunctionNode
private  ASTFunctionNode GraphManager.currentFunction
           
 

Methods in sota.gui.graph with parameters of type ASTFunctionNode
static org.eclipse.draw2d.graph.DirectedGraph CFGBuilder.buildCFG(ASTFunctionNode fn, GraphManager gcm)
          Liefert den DirectedGraph für eine Funktion.
 

Uses of ASTFunctionNode in sota.gui.views
 

Fields in sota.gui.views declared as ASTFunctionNode
private  ASTFunctionNode CFGView.functionNode
           
 

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

Subclasses of ASTFunctionNode in sota.lang.java.ast.nodes
 class JavaASTFunctionNode
          AST-Knoten für eine Funktion
 

Uses of ASTFunctionNode in sota.lang.java.ast.util
 

Fields in sota.lang.java.ast.util with type parameters of type ASTFunctionNode
private  java.util.HashMap<ASTFunctionNode,java.util.ArrayList<ASTLabelNode>> JavaJumpManager.mapOfLabelNodes
           
static java.util.HashSet<ASTFunctionNode> JavaJumpManager.setOfFunctionNodes
           
private  java.util.Stack<ASTFunctionNode> JavaJumpManager.stackOfFunctions
           
 

Methods in sota.lang.java.ast.util that return ASTFunctionNode
 ASTFunctionNode JavaASTBuilder.beginFunction(int ln, java.lang.String content, java.lang.String modifiers, java.lang.String name, java.lang.String arguments)
          Beginnt eine Funktion.
 ASTFunctionNode JavaJumpManager.getCurrFunctionNode()
          Liefert aktuelle Funktion.
 

Methods in sota.lang.java.ast.util with parameters of type ASTFunctionNode
 void JavaJumpManager.addFunction(ASTFunctionNode fn)
          Fügt eine Funktion hinzu.