问题 I'm trying to create a student registration system. In this system, students can see course name, course credit, and the instructor of the course by clicking the "Courses" button.For this purpose i have a Courses class, a database, a frame and a JList courslist. ArrayList<Courses> aq = Database.allCourses(); //allCourses() is a static method in my Database class that returns fields from my Database as an ArrayList<Courses> courselist.setListData(Driver.converToCoursesArray(aq)); //Driver