Wednesday, November 22, 2006

Practical 08 Question 2


public class TestTourBookingFrame {

public static void main(String[] args) {

//(a)Create an instance of the
//TourBookingFrame named f.

TourBookingFrame f = new TourBookingFrame();
//(b)Set the title of f to be “Tour Booking Frame”.
f.setTitle("Tour Booking Frame");
//(c)Set the size of f to be 500 by 250.
f.setSize(500,250);
//(d)Set f to be visible.
f.setVisible(true);

f.show();
} //end main

}//end class

No comments: