Package org.fife.rsta.ac.groovy
Class GroovyLanguageSupport
- java.lang.Object
-
- org.fife.rsta.ac.AbstractLanguageSupport
-
- org.fife.rsta.ac.groovy.GroovyLanguageSupport
-
- All Implemented Interfaces:
LanguageSupport
public class GroovyLanguageSupport extends AbstractLanguageSupport
Language support for Groovy.- Version:
- 1.0
-
-
Field Summary
Fields Modifier and Type Field Description private GroovyCompletionProviderproviderThe completion provider, shared amongst all text areas.-
Fields inherited from interface org.fife.rsta.ac.LanguageSupport
PROPERTY_LANGUAGE_PARSER
-
-
Constructor Summary
Constructors Constructor Description GroovyLanguageSupport()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private GroovyCompletionProvidergetProvider()voidinstall(org.fife.ui.rsyntaxtextarea.RSyntaxTextArea textArea)Installs this support.voiduninstall(org.fife.ui.rsyntaxtextarea.RSyntaxTextArea textArea)Uninstalls this support.-
Methods inherited from class org.fife.rsta.ac.AbstractLanguageSupport
createAutoCompletion, createDefaultCompletionCellRenderer, getAutoActivationDelay, getAutoCompletionFor, getDefaultCompletionCellRenderer, getShowDescWindow, getTextAreas, installImpl, isAutoActivationEnabled, isAutoCompleteEnabled, isParameterAssistanceEnabled, setAutoActivationDelay, setAutoActivationEnabled, setAutoCompleteEnabled, setDefaultCompletionCellRenderer, setParameterAssistanceEnabled, setShowDescWindow, uninstallImpl
-
-
-
-
Field Detail
-
provider
private GroovyCompletionProvider provider
The completion provider, shared amongst all text areas.
-
-
Method Detail
-
getProvider
private GroovyCompletionProvider getProvider()
-
install
public void install(org.fife.ui.rsyntaxtextarea.RSyntaxTextArea textArea)
Description copied from interface:LanguageSupportInstalls this support.- Parameters:
textArea- The text area to install onto.- See Also:
LanguageSupport.uninstall(RSyntaxTextArea)
-
uninstall
public void uninstall(org.fife.ui.rsyntaxtextarea.RSyntaxTextArea textArea)
Description copied from interface:LanguageSupportUninstalls this support.- Parameters:
textArea- The text area to uninstall from.- See Also:
LanguageSupport.install(RSyntaxTextArea)
-
-