Uses of Class
org.fife.rsta.ac.java.rjc.ast.CodeBlock
Packages that use CodeBlock
Package
Description
Java code completion classes.
Nodes making an abstract syntax tree for Java code.
A parser for Java source code.
Java outline tree implementation.
-
Uses of CodeBlock in org.fife.rsta.ac.java
Methods in org.fife.rsta.ac.java with parameters of type CodeBlockModifier and TypeMethodDescriptionprivate voidSourceCompletionProvider.addLocalVarCompletions(Set<org.fife.ui.autocomplete.Completion> set, CodeBlock block, int offs) Adds completions for local variables in a code block inside a method.private voidSourceCompletionProvider.loadCompletionsForCaretPositionQualifiedCodeBlock(CompilationUnit cu, Set<org.fife.ui.autocomplete.Completion> retVal, TypeDeclaration td, CodeBlock block, String prefix, int offs) -
Uses of CodeBlock in org.fife.rsta.ac.java.rjc.ast
Fields in org.fife.rsta.ac.java.rjc.ast declared as CodeBlockModifier and TypeFieldDescriptionprivate CodeBlockMethod.bodyprivate CodeBlockCodeBlock.parentFields in org.fife.rsta.ac.java.rjc.ast with type parameters of type CodeBlockMethods in org.fife.rsta.ac.java.rjc.ast that return CodeBlockModifier and TypeMethodDescriptionMethod.getBody()CodeBlock.getChildBlock(int index) Returns the specified child block.CodeBlock.getDeepestCodeBlockContaining(int offs) Returns the deepest code block nested under this one (or this one itself) containing a given offset.CodeBlock.getParent()Methods in org.fife.rsta.ac.java.rjc.ast with parameters of type CodeBlock -
Uses of CodeBlock in org.fife.rsta.ac.java.rjc.parser
Methods in org.fife.rsta.ac.java.rjc.parser that return CodeBlockModifier and TypeMethodDescriptionprivate CodeBlockASTFactory.getBlock(CompilationUnit cu, CodeBlock parent, Method m, Scanner s, boolean isStatic) private CodeBlockASTFactory.getBlock(CompilationUnit cu, CodeBlock parent, Method m, Scanner s, boolean isStatic, int depth) Parses a block of code.Methods in org.fife.rsta.ac.java.rjc.parser with parameters of type CodeBlockModifier and TypeMethodDescriptionprivate voidASTFactory.checkForDuplicateLocalVarNames(CompilationUnit cu, Token lVar, CodeBlock block, Method m) Checks whether a local variable's name collides with a local variable defined earlier.private CodeBlockASTFactory.getBlock(CompilationUnit cu, CodeBlock parent, Method m, Scanner s, boolean isStatic) private CodeBlockASTFactory.getBlock(CompilationUnit cu, CodeBlock parent, Method m, Scanner s, boolean isStatic, int depth) Parses a block of code. -
Uses of CodeBlock in org.fife.rsta.ac.java.tree
Constructors in org.fife.rsta.ac.java.tree with parameters of type CodeBlock