Uses of Class
org.fife.rsta.ac.common.CodeBlock
-
Packages that use CodeBlock Package Description org.fife.rsta.ac.common Classes usable across language support for all languages.org.fife.rsta.ac.groovy Groovy code completion classes.org.fife.rsta.ac.perl Perl code completion classes. -
-
Uses of CodeBlock in org.fife.rsta.ac.common
Fields in org.fife.rsta.ac.common declared as CodeBlock Modifier and Type Field Description private CodeBlockCodeBlock. parentFields in org.fife.rsta.ac.common with type parameters of type CodeBlock Modifier and Type Field Description private java.util.List<CodeBlock>CodeBlock. childrenMethods in org.fife.rsta.ac.common that return CodeBlock Modifier and Type Method Description CodeBlockCodeBlock. addChildCodeBlock(int start)Creates and returns a child (nested) code block.CodeBlockCodeBlock. getChildCodeBlock(int index)Returns a child code block.CodeBlockCodeBlock. getDeepestCodeBlockContaining(int offs)Returns the deepest code block nested under this one (or this one itself) containing a given offset.CodeBlockCodeBlock. getParent()Returns the parent code block. -
Uses of CodeBlock in org.fife.rsta.ac.groovy
Methods in org.fife.rsta.ac.groovy that return CodeBlock Modifier and Type Method Description private CodeBlockGroovySourceCompletionProvider. createAst(javax.swing.text.JTextComponent comp)Methods in org.fife.rsta.ac.groovy with parameters of type CodeBlock Modifier and Type Method Description private voidGroovySourceCompletionProvider. parseCodeBlock(TokenScanner scanner, CodeBlock block)private voidGroovySourceCompletionProvider. recursivelyAddLocalVars(java.util.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 CodeBlock Modifier and Type Method Description private 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 CodeBlock Modifier and Type Method Description private voidPerlCompletionProvider. parseCodeBlock(TokenScanner scanner, CodeBlock block)Recursively adds code blocks, remembering variables in them.private voidPerlCompletionProvider. recursivelyAddLocalVars(java.util.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).
-