chewie54 wrote:
> My question is, how can I store multiple vectors (each storing a list
> of commands, 1 or more commands) in some kind of list?
Command Pattern:
http://en.wikipedia.org/wiki/Command_pattern
"Some kind of list:"
<http://java.sun.com/javase/6/docs/api/java/util/List.html>
On that page, on the top part, note that the links to ArrayList and
LinkedList will probably be the most useful.
Using Vectors (also a type of List) is possible but Vectors actually
might not be quite what you want.