View Single Post
  #16  
Old July 24th, 2009, 03:54 AM

statttis statttis is offline
Sergeant
 
Join Date: Dec 2008
Posts: 200
Thanks: 10
Thanked 10 Times in 6 Posts
statttis is on a distinguished road
Default Re: O.T Help sought from Java Programmers

Quote:
Originally Posted by hEad View Post
God help me...
As I said, don't worry about it now

Your next step is to write the Enrollment class. It will have the three methods and a list of students. I recommend using a Vector for the list.

You can use the vector as so:

Vector students = new Vector();

then use the methods add() and remove() to add and remove students:

students.add(*student object*)
etc

That should be enough to get you started.
Reply With Quote