Quote:
Originally Posted by hEad
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.