Uses of Class
org.fife.rsta.ac.common.CodeBlock
Packages that use CodeBlock
Package
Description
Classes usable across language support for all languages.
Groovy code completion classes.
Perl code completion classes.
-
Uses of CodeBlock in org.fife.rsta.ac.common
Fields in org.fife.rsta.ac.common declared as CodeBlockFields in org.fife.rsta.ac.common with type parameters of type CodeBlockMethods in org.fife.rsta.ac.common that return CodeBlockModifier and TypeMethodDescriptionCodeBlock.addChildCodeBlock(int start) Creates and returns a child (nested) code block.CodeBlock.getChildCodeBlock(int index) Returns a child code block.CodeBlock.getDeepestCodeBlockContaining(int offs) Returns the deepest code block nested under this one (or this one itself) containing a given offset.CodeBlock.getParent()Returns the parent code block. -
Uses of CodeBlock in org.fife.rsta.ac.groovy
Methods in org.fife.rsta.ac.groovy that return CodeBlockModifier and TypeMethodDescriptionprivate CodeBlockGroovySourceCompletionProvider.createAst(JTextComponent comp) Methods in org.fife.rsta.ac.groovy with parameters of type CodeBlockModifier and TypeMethodDescriptionprivate voidGroovySourceCompletionProvider.parseCodeBlock(TokenScanner scanner, CodeBlock block) private voidGroovySourceCompletionProvider.recursivelyAddLocalVars(List<org.fife.ui.autocomplete.Completion> completions, CodeBlock block, int dot) -
Uses of CodeBlock in org.fife.rsta.ac.perl
Methods in org.fife.rsta.ac.perl that return CodeBlockModifier and TypeMethodDescriptionprivate CodeBlockPerlCompletionProvider.createAst(org.fife.ui.rsyntaxtextarea.RSyntaxTextArea textArea) Creates an "AST" for Perl code, representing code blocks and variables inside those blocks.Methods in org.fife.rsta.ac.perl with parameters of type CodeBlockModifier and TypeMethodDescriptionprivate voidPerlCompletionProvider.parseCodeBlock(TokenScanner scanner, CodeBlock block) Recursively adds code blocks, remembering variables in them.private voidPerlCompletionProvider.recursivelyAddLocalVars(SortedSet<org.fife.ui.autocomplete.Completion> completions, CodeBlock block, int dot, int firstChar) Recursively adds any local variables defined before the given caret offset, and in the given code block (and any nested children the caret is in).