

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Instructions for creating a java gui frame using the facade pattern. Students are required to create a jframe and a main class, add components to the frame, and implement an actionlistener to add student objects to an existing set using a faรงade object. The document also includes references to relevant java classes and packages.
Typology: Lab Reports
1 / 3
This page cannot be seen from the preview
Don't miss anything!


Revised 10/23/
public class MainAddStudent {
public static void main(String[] args) { EventQueue. invokeLater ( new Runnable() { public void run() {
AddStudentFrame frame = new AddStudentFrame(); frame.setDefaultCloseOperation(JFrame. EXIT_ON_CLOSE ); frame.setVisible( true ); }