There is a small error in the documentation.
This section of the code:
/**
* Returns the number of instances of StudentRecords.
* This is a static method.
*/
public static void increaseStudentCount() {
studentCount++;
}
Should read:
/**
* Increase the number of instances of StudentRecords.
* This is a static method.
*/
public static void increaseStudentCount() {
studentCount++;
}
No big deal, but someone might get confused.
Stephen
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/javaprogrammingwithpassion?hl=en
-~----------~----~----~----~------~----~------~--~---