Uses of Interface
sota.ast.nodes.IScopeNode

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

Uses of IScopeNode in sota.ast.nodes
 

Classes in sota.ast.nodes that implement IScopeNode
 class ASTClassNode
          AST-Knoten für Klassenknoten
 class ASTFunctionNode
          AST-Knoten für eine Funktion
 class ASTScopeNode
          AST-Knoten für Scopestatements ASTScopeNode this > ..
 class FileNode
          AST-Knoten für eine geparste Datei
 

Fields in sota.ast.nodes declared as IScopeNode
protected  IScopeNode ASTScopeNode.parent
           
 

Methods in sota.ast.nodes that return IScopeNode
 IScopeNode IScopeNode.getParent()
           
 IScopeNode FileNode.getParent()
           
 IScopeNode ASTScopeNode.getParent()
           
 

Methods in sota.ast.nodes with parameters of type IScopeNode
 void FileNode.createASCContentForScope(IScopeNode node, IScheme ischeme)
           
 

Constructors in sota.ast.nodes with parameters of type IScopeNode
ASTClassNode(int ln, java.lang.String content, java.lang.String scope, java.lang.String name, IScopeNode parent)
           
ASTFunctionNode(int ln, java.lang.String content, java.lang.String scope, java.lang.String modifiers, java.lang.String name, java.lang.String arguments, IScopeNode parent)
           
ASTScopeNode(int ln, java.lang.String scope, java.lang.String name, IScopeNode parent)
           
 

Uses of IScopeNode in sota.ast.util
 

Methods in sota.ast.util with parameters of type IScopeNode
 int IScheme.getInstrumentationLevel(IScopeNode node)
           
 int GlobalInstrumentationScheme.getInstrumentationLevel(IScopeNode node)
           
 

Uses of IScopeNode in sota.gui.views
 

Fields in sota.gui.views declared as IScopeNode
private  IScopeNode LogView.LogViewCreator.scopeNode
           
 

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

Classes in sota.lang.java.ast.nodes that implement IScopeNode
 class JavaASTClassNode
          AST-Knoten für Klassenstrukturen
 class JavaASTFunctionNode
          AST-Knoten für eine Funktion
 class JavaFileNode
          AST-Knoten für eine Quellcodedatei.
 

Constructors in sota.lang.java.ast.nodes with parameters of type IScopeNode
JavaASTClassNode(int ln, java.lang.String content, java.lang.String scope, java.lang.String name, IScopeNode parent)
          Der Konstruktor
JavaASTFunctionNode(int ln, java.lang.String content, java.lang.String scope, java.lang.String modifiers, java.lang.String name, java.lang.String arguments, IScopeNode parent)
          Der Konstruktor
 

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

Fields in sota.lang.java.ast.util with type parameters of type IScopeNode
private  java.util.HashMap<java.lang.String,IScopeNode> JavaASTBuilder.scopeMap
           
private  java.util.Stack<IScopeNode> JavaJumpManager.stackOfScopeNodes
           
 

Methods in sota.lang.java.ast.util that return IScopeNode
 IScopeNode JavaJumpManager.getScopeNode()
          Liefert aktuellen Scope.
 IScopeNode JavaJumpManager.removeScopeNode()
          Entfernt aktuellen Scope
 

Methods in sota.lang.java.ast.util with parameters of type IScopeNode
 void JavaJumpManager.addScopeNode(IScopeNode n)
          Fügt neuen ScopeNode hinzu.