1 import java.awt.*;
2 import java.awt.event.*;
3 
4 // $Id$
5 
6 public class waiting extends Frame {
7 	Label label1;
8 
waiting()9 	public waiting() {
10 	super("    ");
11 
12 	setLayout(null);
13 	addNotify();
14 	setSize(600,200);
15 	label1 = new Label("Please wait while your request is being submitted.");
16 	label1.setFont(new Font("Dialog",Font.BOLD,14));
17 	add(label1);
18 	label1.setBounds(65,75,400,40);
19 
20 
21 }
setVisible()22 	public synchronized void setVisible() {
23 		setLocation(100,100);
24 }
25 
windowClosing(WindowEvent event)26 	public void windowClosing(WindowEvent event){}
windowClosed(WindowEvent event)27 	public void windowClosed(WindowEvent event) {}
windowDeiconified(WindowEvent event)28 	public void windowDeiconified(WindowEvent event) {}
windowIconified(WindowEvent event)29 	public void windowIconified(WindowEvent event){}
windowActivated(WindowEvent event)30 	public void windowActivated(WindowEvent event) {}
windowOpened(WindowEvent event)31 	public void windowOpened(WindowEvent event) {}
32 }
33 
34