// Marty Stepp, CSE 142, Autumn 2009 // This class defines another new type of objects named Student. // Each Student object has 4 data fields as listed below. public class Student { String name; double gpa; int studentID; String email; }