class HotelReservation
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
/**
* This application provides a GUI to operate a hotel reservation system
*
* @author Ting Shih
* @version 1.0.0
*/
public class HotelReservation extends Frame
implements ActionListener, WindowListener {
/**
* The main routine.
*
* @param args String arguments. Not used.
*/
public static void main (String[] args) {
}
/**
* Initializes widgets and creates layouts.
*
* @param width the width of the window
* @param height the height of the window
*/
public HotelReservation(int width, int height) {
}
/**
* Process the button events.
*
* @param e the event generated.
*/
public void actionPerformed(ActionEvent evt) {
}
/**
* method contains empty body
*
* @param e not used
*/
public void windowActivated(WindowEvent e) {}
/**
* method contains empty body
*
* @param e not used
*/
public void windowClosed(WindowEvent e) {}
/**
* When the close box is clicked or the close window menu item
* is chosen, this method causes the application to terminate
*
* @param e not used
*/
public void windowClosing(WindowEvent e) {
}
/**
* method contains empty body
*
* @param e not used
*/
public void windowDeactivated(WindowEvent e) {}
/**
* method contains empty body
*
* @param e not used
*/
public void windowDeiconified(WindowEvent e) {}
/**
* method contains empty body
*
* @param e not used
*/
public void windowIconified(WindowEvent e) {}
/**
* method contains empty body
*
* @param e not used
*/
public void windowOpened(WindowEvent e) {}
}