uvi
Class WordLists.WordList

java.lang.Object
  extended by uvi.WordLists.WordList
Enclosing class:
WordLists

static class WordLists.WordList
extends Object

Holds the information for a single list of tokens. This includes the name of the list (which is an arbitrary token itself) and the list of tokens (stored as Strings).


Field Summary
(package private)  int count
          The number of times this list is added to (regardless of whether the token being added to the list is not already added because it's already in the list)
(package private)  String listName
          The name of the list (i.e. 'SelRestr').
(package private)  ArrayList tokens
          An array of tokens for this list.
 
Constructor Summary
WordLists.WordList(String newName)
          Constructs a blank WordLists object with the given name.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

listName

String listName
The name of the list (i.e. 'SelRestr').


count

int count
The number of times this list is added to (regardless of whether the token being added to the list is not already added because it's already in the list)


tokens

ArrayList tokens
An array of tokens for this list.

Constructor Detail

WordLists.WordList

WordLists.WordList(String newName)
Constructs a blank WordLists object with the given name.