Hey Thanks
That helps me alot.
: : How do I create or declare a function type Vector? Could some one show me some examples.
: :
: Here are some examples:
:
: public Vector getShipDirection()
: {
: Vector d = new Vector(2);
: // Fill d with information
: return d;
: }
:
: public Vector getBooks()
: {
: return new Vector(bookCollection);
: }
:
: private Vector calcVectorSum(Vector v1, Vector v2)
: {
: // Perform calcution and return result
: }
:
: More info can be found on:
http://java.sun.com/j2se/1.5.0/docs/api/java/util/Vector.html
: