A B C D E F G H I L M O P R S T U V

A

AbstractCompletion - class org.fife.ui.autocomplete.AbstractCompletion.
Base class for possible completions.
AbstractCompletion(CompletionProvider) - Constructor for class org.fife.ui.autocomplete.AbstractCompletion
Constructor.
AbstractCompletionProvider - class org.fife.ui.autocomplete.AbstractCompletionProvider.
A base class for completion providers.
AbstractCompletionProvider() - Constructor for class org.fife.ui.autocomplete.AbstractCompletionProvider
Constructor.
AutoCompletion - class org.fife.ui.autocomplete.AutoCompletion.
Adds autocompletion to a text component.
AutoCompletion(CompletionProvider) - Constructor for class org.fife.ui.autocomplete.AutoCompletion
Constructor.
addAttributes(StringBuffer) - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Adds HTML describing the attributes of this tag to a buffer.
addCompletion(Completion) - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
Adds a single completion to this provider.
addCompletions(List) - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
Adds Completions to this provider.
addDefinitionString(StringBuffer) - Method in class org.fife.ui.autocomplete.FunctionCompletion
 
addDefinitionString(StringBuffer) - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
 
addDefinitionString(StringBuffer) - Method in class org.fife.ui.autocomplete.VariableCompletion
 
addParameters(StringBuffer) - Method in class org.fife.ui.autocomplete.FunctionCompletion
Adds HTML describing the parameters to this function to a buffer.
addWordCompletions(String[]) - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
Adds simple completions for a list of words.

B

BasicCompletion - class org.fife.ui.autocomplete.BasicCompletion.
A straightforward Completion implementation.
BasicCompletion(CompletionProvider, String) - Constructor for class org.fife.ui.autocomplete.BasicCompletion
Constructor.
BasicCompletion(CompletionProvider, String, String) - Constructor for class org.fife.ui.autocomplete.BasicCompletion
Constructor.
BasicCompletion(CompletionProvider, String, String, String) - Constructor for class org.fife.ui.autocomplete.BasicCompletion
Constructor.

C

Completion - interface org.fife.ui.autocomplete.Completion.
Represents a completion choice.
CompletionCellRenderer - class org.fife.ui.autocomplete.CompletionCellRenderer.
A cell renderer that adds some pizazz when rendering the standard Completion types, like Eclipse and NetBeans do.
CompletionCellRenderer() - Constructor for class org.fife.ui.autocomplete.CompletionCellRenderer
Constructor.
CompletionProvider - interface org.fife.ui.autocomplete.CompletionProvider.
Provides autocompletion values to an AutoCompletion.
CompletionProviderBase - class org.fife.ui.autocomplete.CompletionProviderBase.
A base class for all standard completion providers.
CompletionProviderBase() - Constructor for class org.fife.ui.autocomplete.CompletionProviderBase
 
CompletionXMLParser - class org.fife.ui.autocomplete.CompletionXMLParser.
Parser for an XML file describing a procedural language such as C.
CompletionXMLParser(CompletionProvider) - Constructor for class org.fife.ui.autocomplete.CompletionXMLParser
Constructor.
characters(char[], int, int) - Method in class org.fife.ui.autocomplete.CompletionXMLParser
Called when character data inside an element is found.
checkProviderAndAdd(Completion) - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
 
clear() - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
Removes all completions from this provider.
clearParameterizedCompletionParams() - Method in interface org.fife.ui.autocomplete.CompletionProvider
Clears the values used to identify and insert "parameterized completions" (e.g. functions or methods).
clearParameterizedCompletionParams() - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Clears the values used to identify and insert "parameterized completions" (e.g. functions or methods). After this method is called, functions and methods will not have their parameters auto-completed.
clearParameterizedCompletionParams() - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Calling this method will result in an UnsupportedOperationException being thrown.
comparator - Variable in class org.fife.ui.autocomplete.AbstractCompletionProvider
Compares a Completion against a String.
compareTo(Object) - Method in class org.fife.ui.autocomplete.AbstractCompletion
Compares this completion to another one lexicographically, ignoring case.
completions - Variable in class org.fife.ui.autocomplete.AbstractCompletionProvider
The completions this provider is aware of.

D

DefaultCompletionProvider - class org.fife.ui.autocomplete.DefaultCompletionProvider.
A basic completion provider implementation.
DefaultCompletionProvider() - Constructor for class org.fife.ui.autocomplete.DefaultCompletionProvider
Constructor.
DefaultCompletionProvider(String[]) - Constructor for class org.fife.ui.autocomplete.DefaultCompletionProvider
Creates a completion provider that provides completion for a simple list of words.
doCompletion() - Method in class org.fife.ui.autocomplete.AutoCompletion
Displays the popup window.

E

EMPTY_STRING - Static variable in class org.fife.ui.autocomplete.CompletionProviderBase
 
ExternalURLHandler - interface org.fife.ui.autocomplete.ExternalURLHandler.
A callback for when an external URL is clicked in the description window.
endElement(String, String, String) - Method in class org.fife.ui.autocomplete.CompletionXMLParser
Called when an element is closed.

F

FunctionCompletion - class org.fife.ui.autocomplete.FunctionCompletion.
A completion choice representing a function.
FunctionCompletion(CompletionProvider, String, String) - Constructor for class org.fife.ui.autocomplete.FunctionCompletion
Constructor.

G

getAlreadyEntered(JTextComponent) - Method in class org.fife.ui.autocomplete.AbstractCompletion
Returns the portion of this completion that has already been entered into the text component. The match is case-insensitive.

This is a convenience method for: getProvider().getAlreadyEnteredText(comp).

getAlreadyEntered(JTextComponent) - Method in interface org.fife.ui.autocomplete.Completion
Returns the portion of this completion that has already been entered into the text component.
getAlreadyEnteredText(JTextComponent) - Method in interface org.fife.ui.autocomplete.CompletionProvider
Returns the text just before the current caret position that could be the start of something auto-completable.
getAlreadyEnteredText(JTextComponent) - Method in class org.fife.ui.autocomplete.DefaultCompletionProvider
Returns the text just before the current caret position that could be the start of something auto-completable.
getAlreadyEnteredText(JTextComponent) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the text just before the current caret position that could be the start of something auto-completable.
getAlternateBackground() - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Returns the background color to use on alternating lines.
getAttribute(int) - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Returns the specified ParameterizedCompletion.Parameter.
getAttributeCount() - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Returns the number of attributes of this tag.
getAutoCompleteSingleChoices() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns whether, if a single autocomplete choice is available, it should be automatically inserted, without displaying the popup menu.
getCommentCompletionProvider() - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the completion provider to use for comments.
getCompletionByInputText(String) - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
Returns a list of Completions in this provider with the specified input text.
getCompletionProvider() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns the completion provider.
getCompletions(JTextComponent) - Method in interface org.fife.ui.autocomplete.CompletionProvider
Gets the possible completions for the text component at the current caret position.
getCompletions(JTextComponent) - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Gets the possible completions for the text component at the current caret position.
getCompletions() - Method in class org.fife.ui.autocomplete.CompletionXMLParser
Returns the completions found after parsing the XML.
getCompletionsAt(JTextComponent, Point) - Method in interface org.fife.ui.autocomplete.CompletionProvider
Returns the completions that have been entered at the specified visual location.
getCompletionsAt(JTextComponent, Point) - Method in class org.fife.ui.autocomplete.DefaultCompletionProvider
Returns the completions that have been entered at the specified visual location. This can be used for tool tips when the user hovers the mouse over completed text.
getCompletionsAt(JTextComponent, Point) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the completions that have been entered at the specified visual location. This can be used for tool tips when the user hovers the mouse over completed text.
getCompletionsImpl(JTextComponent) - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
Does the dirty work of creating a list of completions.
getCompletionsImpl(JTextComponent) - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Does the dirty work of creating a list of completions.
getCompletionsImpl(JTextComponent) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Does the dirty work of creating a list of completions.
getDefaultCompletionProvider() - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the completion provider used when one isn't defined for a particular token type.
getDefaultTriggerKey() - Static method in class org.fife.ui.autocomplete.AutoCompletion
Returns the default autocomplete "trigger key" for this OS.
getDefinedIn() - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Returns where this variable is defined.
getDefinedIn() - Method in class org.fife.ui.autocomplete.VariableCompletion
Returns where this variable is defined.
getDefinitionString() - Method in class org.fife.ui.autocomplete.FunctionCompletion
Returns the "definition string" for this function completion.
getDefinitionString() - Method in interface org.fife.ui.autocomplete.ParameterizedCompletion
Returns the "definition string" for this completion.
getDefinitionString() - Method in class org.fife.ui.autocomplete.VariableCompletion
 
getDescription() - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Returns a short description of this variable.
getDescription() - Method in class org.fife.ui.autocomplete.ParameterizedCompletion.Parameter
 
getDisplayFont() - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Returns the font used when rendering completions.
getDocCommentCompletionProvider() - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the completion provider to use for documentation comments.
getExternalURLHandler() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns the handler to use when an external URL is clicked in the description window.
getInputText() - Method in class org.fife.ui.autocomplete.AbstractCompletion
Returns the text the user has to (start) typing for this completion to be offered.
getInputText() - Method in interface org.fife.ui.autocomplete.Completion
Returns the text that the user has to (start) typing for this completion to be offered.
getInputText() - Method in class org.fife.ui.autocomplete.ShorthandCompletion
Returns the text the user must start typing to get this completion.
getListCellRenderer() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns the default list cell renderer used when a completion provider does not supply its own.
getListCellRenderer() - Method in interface org.fife.ui.autocomplete.CompletionProvider
Returns the cell renderer for completions returned from this provider.
getListCellRenderer() - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Returns the cell renderer for completions returned from this provider.
getListCellRendererComponent(JList, Object, int, boolean, boolean) - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Returns the renderer.
getName() - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Returns the name of this tag.
getName() - Method in class org.fife.ui.autocomplete.ParameterizedCompletion.Parameter
 
getName() - Method in class org.fife.ui.autocomplete.VariableCompletion
Returns the name of this variable.
getParam(int) - Method in class org.fife.ui.autocomplete.FunctionCompletion
Returns the specified ParameterizedCompletion.Parameter.
getParam(int) - Method in interface org.fife.ui.autocomplete.ParameterizedCompletion
Returns the specified ParameterizedCompletion.Parameter.
getParamCount() - Method in class org.fife.ui.autocomplete.FunctionCompletion
Returns the number of parameters to this function.
getParamCount() - Method in interface org.fife.ui.autocomplete.ParameterizedCompletion
Returns the number of parameters this completion takes.
getParamEndChar() - Method in class org.fife.ui.autocomplete.CompletionXMLParser
Returns the parameter end character specified.
getParamSeparator() - Method in class org.fife.ui.autocomplete.CompletionXMLParser
Returns the parameter end string specified.
getParamStartChar() - Method in class org.fife.ui.autocomplete.CompletionXMLParser
Returns the parameter start character specified.
getParameterListEnd() - Method in interface org.fife.ui.autocomplete.CompletionProvider
Returns the text that marks the end of a list of parameters to a function or method.
getParameterListEnd() - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Returns the text that marks the end of a list of parameters to a function or method.
getParameterListEnd() - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the text that marks the end of a list of parameters to a function or method.
getParameterListSeparator() - Method in interface org.fife.ui.autocomplete.CompletionProvider
Returns the text that separates parameters to a function or method.
getParameterListSeparator() - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Returns the text that separates parameters to a function or method.
getParameterListSeparator() - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the text that separates parameters to a function or method.
getParameterListStart() - Method in interface org.fife.ui.autocomplete.CompletionProvider
Returns the text that marks the start of a list of parameters to a function or method.
getParameterListStart() - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Returns the text that marks the start of a list of parameters to a function or method.
getParameterListStart() - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the text that marks the start of a list of parameters to a function or method.
getParameterizedCompletions(JTextComponent) - Method in interface org.fife.ui.autocomplete.CompletionProvider
Returns a list of parameterized completions that have been entered at the current caret position of a text component (and thus can have their completion choices displayed).
getParameterizedCompletions(JTextComponent) - Method in class org.fife.ui.autocomplete.DefaultCompletionProvider
Returns a list of parameterized completions that have been entered at the current caret position of a text component (and thus can have their completion choices displayed).
getParameterizedCompletions(JTextComponent) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns a list of parameterized completions that have been entered at the current caret position of a text component (and thus can have their completion choices displayed).
getParent() - Method in interface org.fife.ui.autocomplete.CompletionProvider
Returns the parent completion provider.
getParent() - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Returns the parent completion provider.
getProvider() - Method in class org.fife.ui.autocomplete.AbstractCompletion
Returns the provider that returned this completion.
getProvider() - Method in interface org.fife.ui.autocomplete.Completion
Returns the provider that returned this completion.
getReplacementText(Completion, Document, int, int) - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns the text to replace with in the document.
getReplacementText() - Method in class org.fife.ui.autocomplete.BasicCompletion
Returns the text to insert as the result of this auto-completion. This is the "complete" text, including any text that replaces what the user has already typed.
getReplacementText() - Method in interface org.fife.ui.autocomplete.Completion
Returns the text to insert as the result of this auto-completion.
getReplacementText() - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Returns the text to insert as the result of this auto-completion. This is the "complete" text, including any text that replaces what the user has already typed.
getReturnValueDescription() - Method in class org.fife.ui.autocomplete.FunctionCompletion
Returns the description of the return value of this function.
getShortDescription() - Method in class org.fife.ui.autocomplete.BasicCompletion
Returns the short description of this completion, usually used in the completion choices list.
getShowDescWindow() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns whether the "description window" should be shown alongside the completion window.
getStringCompletionProvider() - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the completion provider to use for strings.
getSummary() - Method in class org.fife.ui.autocomplete.BasicCompletion
Returns the description of this auto-complete choice. This can be used in a popup "description window."
getSummary() - Method in interface org.fife.ui.autocomplete.Completion
Returns the description of this auto-complete choice.
getSummary() - Method in class org.fife.ui.autocomplete.FunctionCompletion
Returns the description of this auto-complete choice. This can be used in a popup "description window."
getSummary() - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Returns the description of this auto-complete choice. This can be used in a popup "description window."
getSummary() - Method in class org.fife.ui.autocomplete.ShorthandCompletion
If a summary has been set, that summary is returned.
getSummary() - Method in class org.fife.ui.autocomplete.VariableCompletion
Returns the description of this auto-complete choice. This can be used in a popup "description window."
getSummaryBody() - Method in class org.fife.ui.autocomplete.ShorthandCompletion
Returns the "body" of the HTML returned by ShorthandCompletion.getSummary() when no summary text has been set.
getTextComponent() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns the text component for which autocompletion is enabled.
getToolTipText() - Method in class org.fife.ui.autocomplete.AbstractCompletion
The default implementation returns null.
getToolTipText() - Method in interface org.fife.ui.autocomplete.Completion
Returns the tool tip text to display for mouse hovers over this completion.
getToolTipText() - Method in class org.fife.ui.autocomplete.FunctionCompletion
Returns the tool tip text to display for mouse hovers over this completion.
getToolTipText(RTextArea, MouseEvent) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Returns the tool tip to display for a mouse event.
getToolTipText() - Method in class org.fife.ui.autocomplete.VariableCompletion
Returns the tool tip text to display for mouse hovers over this completion.
getTriggerKey() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns the "trigger key" used for autocomplete.
getType() - Method in class org.fife.ui.autocomplete.ParameterizedCompletion.Parameter
 
getType() - Method in class org.fife.ui.autocomplete.VariableCompletion
Returns the type of this variable.

H

hideChildWindows() - Method in class org.fife.ui.autocomplete.AutoCompletion
Hides any child windows being displayed by the auto-completion system.
hierarchyChanged(HierarchyEvent) - Method in class org.fife.ui.autocomplete.AutoCompletion
Called when the component hierarchy for our text component changes.

I

init() - Method in class org.fife.ui.autocomplete.DefaultCompletionProvider
Initializes this completion provider.
install(JTextComponent) - Method in class org.fife.ui.autocomplete.AutoCompletion
Installs this autocompletion on a text component.
isAutoCompleteEnabled() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns whether autocompletion is enabled.
isParameterAssistanceEnabled() - Method in class org.fife.ui.autocomplete.AutoCompletion
Returns whether parameter assistance is enabled.
isValidChar(char) - Method in class org.fife.ui.autocomplete.DefaultCompletionProvider
Returns whether the specified character is valid in an auto-completion.

L

LanguageAwareCompletionProvider - class org.fife.ui.autocomplete.LanguageAwareCompletionProvider.
A completion provider for the C programming language (and other languages with similar syntax).
LanguageAwareCompletionProvider() - Constructor for class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Constructor subclasses can use when they don't have their default provider created at construction time.
LanguageAwareCompletionProvider(CompletionProvider) - Constructor for class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Constructor.
loadFromXML(File) - Method in class org.fife.ui.autocomplete.DefaultCompletionProvider
Loads completions from an XML file.
loadFromXML(InputStream) - Method in class org.fife.ui.autocomplete.DefaultCompletionProvider
Loads completions from an XML input stream.
loadFromXML(String) - Method in class org.fife.ui.autocomplete.DefaultCompletionProvider
Loads completions from an XML file.

M

MarkupTagCompletion - class org.fife.ui.autocomplete.MarkupTagCompletion.
A completion representing a tag in markup, such as HTML or XML.
MarkupTagCompletion(CompletionProvider, String) - Constructor for class org.fife.ui.autocomplete.MarkupTagCompletion
Constructor.

O

org.fife.ui.autocomplete - package org.fife.ui.autocomplete
 

P

ParameterizedCompletion - interface org.fife.ui.autocomplete.ParameterizedCompletion.
A completion option that takes parameters, such as a function or method.
ParameterizedCompletion.Parameter - class org.fife.ui.autocomplete.ParameterizedCompletion.Parameter.
A parameter passed to a parameterized Completion.
ParameterizedCompletion.Parameter(String, String) - Constructor for class org.fife.ui.autocomplete.ParameterizedCompletion.Parameter
 
possiblyAddDefinedIn(StringBuffer) - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Adds some HTML describing where this variable is defined, if this information is known.
possiblyAddDefinedIn(StringBuffer) - Method in class org.fife.ui.autocomplete.VariableCompletion
Adds some HTML describing where this variable is defined, if this information is known.
possiblyAddDescription(StringBuffer) - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Adds the description text as HTML to a buffer, if a description is defined.
possiblyAddDescription(StringBuffer) - Method in class org.fife.ui.autocomplete.VariableCompletion
Adds the description text as HTML to a buffer, if a description is defined.
prepareForFunctionCompletion(JList, FunctionCompletion, int, boolean, boolean) - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Prepares this renderer to display a function completion.
prepareForMarkupTagCompletion(JList, MarkupTagCompletion, int, boolean, boolean) - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Prepares this renderer to display a markup tag completion.
prepareForOtherCompletion(JList, Completion, int, boolean, boolean) - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Prepares this renderer to display a completion not specifically handled elsewhere.
prepareForVariableCompletion(JList, VariableCompletion, int, boolean, boolean) - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Prepares this renderer to display a variable completion.

R

refreshPopupWindow() - Method in class org.fife.ui.autocomplete.AutoCompletion
Refreshes the popup window.
removeCompletion(Completion) - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
Removes the specified completion from this provider.
reset(CompletionProvider) - Method in class org.fife.ui.autocomplete.CompletionXMLParser
Resets this parser to grab more completions.

S

ShorthandCompletion - class org.fife.ui.autocomplete.ShorthandCompletion.
A completion where the input text is shorthand for (really, just different than) the actual text to be inserted.
ShorthandCompletion(CompletionProvider, String, String) - Constructor for class org.fife.ui.autocomplete.ShorthandCompletion
Constructor.
ShorthandCompletion(CompletionProvider, String, String, String) - Constructor for class org.fife.ui.autocomplete.ShorthandCompletion
Constructor.
ShorthandCompletion(CompletionProvider, String, String, String, String) - Constructor for class org.fife.ui.autocomplete.ShorthandCompletion
Constructor.
seg - Variable in class org.fife.ui.autocomplete.DefaultCompletionProvider
 
setAlternateBackground(Color) - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Sets the background color to use on alternating lines.
setAttributes(List) - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Sets the attributes of this tag.
setAutoCompleteEnabled(boolean) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets whether auto-completion is enabled.
setAutoCompleteSingleChoices(boolean) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets whether, if a single auto-complete choice is available, it should be automatically inserted, without displaying the popup menu.
setChoicesWindowSize(int, int) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets the size of the completion choices window.
setCommentCompletionProvider(CompletionProvider) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Sets the comment completion provider.
setCompletionProvider(CompletionProvider) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets the completion provider being used.
setDefaultCompletionProvider(CompletionProvider) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Sets the default completion provider.
setDefinedIn(String) - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Sets where this variable is defined.
setDefinedIn(String) - Method in class org.fife.ui.autocomplete.VariableCompletion
Sets where this variable is defined.
setDescription(String) - Method in class org.fife.ui.autocomplete.MarkupTagCompletion
Sets the short description of this tag.
setDescription(String) - Method in class org.fife.ui.autocomplete.ParameterizedCompletion.Parameter
 
setDescriptionWindowSize(int, int) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets the size of the description window.
setDisplayFont(Font) - Method in class org.fife.ui.autocomplete.CompletionCellRenderer
Sets the font to use when rendering completion items.
setDocCommentCompletionProvider(CompletionProvider) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Sets the documentation comment completion provider.
setExternalURLHandler(ExternalURLHandler) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets the handler to use when an external URL is clicked in the description window.
setListCellRenderer(ListCellRenderer) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets the default list cell renderer to use when a completion provider does not supply its own.
setListCellRenderer(ListCellRenderer) - Method in interface org.fife.ui.autocomplete.CompletionProvider
Sets the renderer to use when displaying completion choices.
setListCellRenderer(ListCellRenderer) - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Sets the renderer to use when displaying completion choices.
setParameterAssistanceEnabled(boolean) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets whether parameter assistance is enabled.
setParameterizedCompletionParams(char, String, char) - Method in interface org.fife.ui.autocomplete.CompletionProvider
Sets the values used to identify and insert "parameterized completions" (e.g. functions or methods).
setParameterizedCompletionParams(char, String, char) - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Sets the values used to identify and insert "parameterized completions" (e.g. functions or methods). If this method isn't called, functions and methods will not have their parameters auto-completed.
setParameterizedCompletionParams(char, String, char) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Calling this method will result in an UnsupportedOperationException being thrown.
setParams(List) - Method in class org.fife.ui.autocomplete.FunctionCompletion
Sets the parameters to this function.
setParent(CompletionProvider) - Method in interface org.fife.ui.autocomplete.CompletionProvider
Sets the parent completion provider.
setParent(CompletionProvider) - Method in class org.fife.ui.autocomplete.CompletionProviderBase
Sets the parent completion provider.
setReturnValueDescription(String) - Method in class org.fife.ui.autocomplete.FunctionCompletion
Sets the description of the return value of this function.
setShortDescription(String) - Method in class org.fife.ui.autocomplete.BasicCompletion
Sets the short description of this completion.
setShowDescWindow(boolean) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets whether the "description window" should be shown beside the completion window.
setStringCompletionProvider(CompletionProvider) - Method in class org.fife.ui.autocomplete.LanguageAwareCompletionProvider
Sets the completion provider to use while in a string.
setSummary(String) - Method in class org.fife.ui.autocomplete.BasicCompletion
Sets the summary for this completion.
setTriggerKey(KeyStroke) - Method in class org.fife.ui.autocomplete.AutoCompletion
Sets the keystroke that should be used to trigger the auto-complete popup window.
startElement(String, String, String, Attributes) - Method in class org.fife.ui.autocomplete.CompletionXMLParser
Called when an element starts.
startsWithIgnoreCase(String, String) - Method in class org.fife.ui.autocomplete.AbstractCompletionProvider
Returns whether str starts with start, ignoring case.

T

toString() - Method in class org.fife.ui.autocomplete.AbstractCompletion
Returns a string representation of this completion.
toString() - Method in class org.fife.ui.autocomplete.BasicCompletion
Returns a string representation of this completion.
toString() - Method in class org.fife.ui.autocomplete.ParameterizedCompletion.Parameter
 
toString() - Method in class org.fife.ui.autocomplete.VariableCompletion
Overridden to return the name of the variable being completed.

U

uninstall() - Method in class org.fife.ui.autocomplete.AutoCompletion
Uninstalls this auto-completion from its text component.
updateUI() - Method in class org.fife.ui.autocomplete.AutoCompletion
Updates the LookAndFeel of the popup window.
urlClicked(URL) - Method in interface org.fife.ui.autocomplete.ExternalURLHandler
Called when an external URL is clicked in the description window.

V

VariableCompletion - class org.fife.ui.autocomplete.VariableCompletion.
A completion for a variable (or constant) in a programming language.
VariableCompletion(CompletionProvider, String, String) - Constructor for class org.fife.ui.autocomplete.VariableCompletion
Constructor.

A B C D E F G H I L M O P R S T U V