Inheritance diagram for GuiComponents.scripting.NameCompleter:
Public Member Functions | |
List | completeName (String context, String part) |
This function is called whenever the owner wants to complete a string. | |
List | provideHelp (String method) |
This function returns a list of help Strings. |
Typically called after the user has pressed the TAB key. None of these methods may return null.
Definition at line 15 of file NameCompleter.java.
|
This function is called whenever the owner wants to complete a string. The parameter context can be used to determine context. For instance, typing: "import java.la<TAB>" would give context = "import" and part = "java.la".
Implemented in GuiComponents.scripting.BeanShellNameCompleter, and GuiComponents.scripting.SearchableObjectRegistry. Referenced by GuiComponents.scripting.DefaultInterpreter.completeName(). |
|
This function returns a list of help Strings. It is intended to be used to help the user when calling a function/method by providing an argument list.
Implemented in GuiComponents.scripting.BeanShellNameCompleter, and GuiComponents.scripting.SearchableObjectRegistry. |