Public Member Functions | |
BeanShellNameCompleter (BSFEngine engine) | |
Creates a new instance of BeanShellNameCompleter. | |
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. | |
Private Attributes | |
NameCompletionTable | nct |
Definition at line 16 of file BeanShellNameCompleter.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".
Implements GuiComponents.scripting.NameCompleter. Definition at line 31 of file BeanShellNameCompleter.java. |
|
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.
Implements GuiComponents.scripting.NameCompleter. Definition at line 42 of file BeanShellNameCompleter.java. |