1998-05-29 21:27:10 +00:00
|
|
|
import java.awt.*;
|
|
|
|
|
import java.awt.event.*;
|
|
|
|
|
|
2010-10-29 18:04:21 +00:00
|
|
|
// $Id$
|
1998-05-29 21:29:09 +00:00
|
|
|
|
1998-05-29 21:27:10 +00:00
|
|
|
public class waiting extends Frame {
|
|
|
|
|
Label label1;
|
|
|
|
|
|
|
|
|
|
public waiting() {
|
|
|
|
|
super(" ");
|
|
|
|
|
|
|
|
|
|
setLayout(null);
|
|
|
|
|
addNotify();
|
|
|
|
|
setSize(600,200);
|
|
|
|
|
label1 = new Label("Please wait while your request is being submitted.");
|
|
|
|
|
label1.setFont(new Font("Dialog",Font.BOLD,14));
|
|
|
|
|
add(label1);
|
|
|
|
|
label1.setBounds(65,75,400,40);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
public synchronized void setVisible() {
|
|
|
|
|
setLocation(100,100);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void windowClosing(WindowEvent event){}
|
|
|
|
|
public void windowClosed(WindowEvent event) {}
|
|
|
|
|
public void windowDeiconified(WindowEvent event) {}
|
|
|
|
|
public void windowIconified(WindowEvent event){}
|
|
|
|
|
public void windowActivated(WindowEvent event) {}
|
|
|
|
|
public void windowOpened(WindowEvent event) {}
|
|
|
|
|
}
|
|
|
|
|
|