//import AWTBPEvents.*; import NonAWTBPEvents.*; // A class to launch the application public class ExampleMain { public static void main(String args[]) { // Create a patient Patient joe = new Patient ("Joe", 120, 80); // Create the patient's GUI PatientFrame frame = new PatientFrame(joe); // Create the patient monitor BloodPressureFrame bpf = new BloodPressureFrame(joe); } }