// this class defines Student objects public class Student { private int ID; private String name; // Here are our constructors ... // Here is our accessor method to return the ID of the student object public int getID() ... }