alright...I'm getting the following error:
edited for clarity.
so I go to that line and see this:The constructor StudentObject(Long, String, String) is undefined
from there I go to the StudentObject.java file, which is in the same directory, and sure enough:StudentObject temp = new StudentObject(ID, StudentName, StudentMajor);
what am I missing here?public StudentObject(long ID, String Name, String Major) {
________// constructor that creates a new StidentObject given
________// id number, name, and major
________________StudentID = ID;
________________StudentName = Name;
________________StudentMajor = Major;
________} // end StudentObject
edited for clarity.