Uses of Class
org.fife.rsta.ac.java.rjc.ast.CodeBlock
-
Packages that use CodeBlock Package Description org.fife.rsta.ac.java Java code completion classes.org.fife.rsta.ac.java.rjc.ast Nodes making an abstract syntax tree for Java code.org.fife.rsta.ac.java.rjc.parser A parser for Java source code.org.fife.rsta.ac.java.tree Java outline tree implementation. -
-
Uses of CodeBlock in org.fife.rsta.ac.java
Methods in org.fife.rsta.ac.java with parameters of type CodeBlock Modifier and Type Method Description private voidSourceCompletionProvider. addLocalVarCompletions(java.util.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, java.util.Set<org.fife.ui.autocomplete.Completion> retVal, TypeDeclaration td, CodeBlock block, java.lang.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 CodeBlock Modifier and Type Field Description private CodeBlockMethod. bodyprivate CodeBlockCodeBlock. parentFields in org.fife.rsta.ac.java.rjc.ast with type parameters of type CodeBlock Modifier and Type Field Description private java.util.List<CodeBlock>CodeBlock. childrenMethods in org.fife.rsta.ac.java.rjc.ast that return CodeBlock Modifier and Type Method Description CodeBlockMethod. getBody()CodeBlockCodeBlock. getChildBlock(int index)Returns the specified child block.CodeBlockCodeBlock. getDeepestCodeBlockContaining(int offs)Returns the deepest code block nested under this one (or this one itself) containing a given offset.CodeBlockCodeBlock. getParent()Methods in org.fife.rsta.ac.java.rjc.ast with parameters of type CodeBlock Modifier and Type Method Description voidCodeBlock. add(CodeBlock child)Adds a child code block to this code block.voidMethod. setBody(CodeBlock body)voidCodeBlock. setParent(CodeBlock parent) -
Uses of CodeBlock in org.fife.rsta.ac.java.rjc.parser
Methods in org.fife.rsta.ac.java.rjc.parser that return CodeBlock Modifier and Type Method Description 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.Methods in org.fife.rsta.ac.java.rjc.parser with parameters of type CodeBlock Modifier and Type Method Description private 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 Constructor Description MemberTreeNode(CodeBlock cb)
-