| java.util.ArrayList bsh.util.NameCompletionTable
NameCompletionTable | public class NameCompletionTable extends ArrayList implements NameCompletion(Code) | | NameCompletionTable is a utility that implements simple name completion for
a collection of names, NameSources, and other NameCompletionTables.
This implementation uses a trivial linear search and comparison...
|
NameCompletionTable | public NameCompletionTable()(Code) | | |
add | public void add(NameCompletionTable table)(Code) | | Add a NameCompletionTable, which is more optimized than the more
general NameSource
|
add | public void add(NameSource source)(Code) | | Add a NameSource which is monitored for names.
Unimplemented - behavior is broken... no updates
|
getMatchingNames | protected void getMatchingNames(String part, List found)(Code) | | Add any matching names to list (including any from other tables)
|
|
|