You should familiarize yourself with the
Java API documentation. You can easily look up the answers to such questions. For example, if you look at
the docs for the Vector class, you will see that you an use the add() method (Sorry, the board wouldn't let me link directly to the method since the URL has parenteses in it. You can just scroll down the page above to find it.) to append elements into a Vector. It takes a single argument which is the Object you wish to add. For example:
The Objects can also be reference variables:
You should be able to adapt these examples to fit your particular situation.
HTH
Layne
[ April 29, 2003: Message edited by: Layne Lund ]