| Package | Description |
|---|---|
| org.rigwit.forth |
Forth Virtual Machine
|
| Modifier and Type | Field and Description |
|---|---|
java.util.ArrayList<WordList> |
VM.wordlists
A list of every word list, named or anonymous, in the order
they are defined.
|
| Modifier and Type | Method and Description |
|---|---|
static WordList |
WordList.find(VM vm,
java.lang.String name)
Return a named word list if available or
null if the
word list has not been defined. |
static WordList |
WordList.forWordList(VM vm,
java.lang.String name)
Create a new word list, the new list has no words and is
case sensitive.
|
WordList |
Dictionary.getCurrent()
Return the current definition word list.
|
WordList[] |
Dictionary.getSearchOrder()
Return the current search order, list of word lists.
|
WordList |
Dictionary.setCurrent(WordList wordlist)
Set the currently active word list to a given word list.
|
| Modifier and Type | Method and Description |
|---|---|
WordList |
Dictionary.setCurrent(WordList wordlist)
Set the currently active word list to a given word list.
|
void |
Dictionary.setSearchOrder(WordList[] list)
Set the dictionaries search order to a given list of word lists.
|