home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-09-15 | 695 b | 33 lines |
-
- /**
- * Pop up a (modal) dialog that talks about the BeanBox.
- */
-
- package sun.beanbox;
-
- import java.awt.*;
- import java.beans.*;
-
- public class AboutDialog extends MessageDialog {
- private final static String message = "Beans Development Kit 1.0 ["+BeanBoxFrame.getVersionID()+"]\n"
- + "\n"
- + "BeanBox\n"
- + "Graham Hamilton, Eduardo Pelegri-Llopart\n"
- + "\n"
- + "Example Beans\n"
- + "Larry Cable, Jerome Dochez, Graham Hamilton, Hans Muller\n"
- + "\n"
- + "Tutorial & Documentation\n"
- + "Alden Desoto\n"
- + "\n"
- + "Fearless Product Marketing\n"
- + "Gina Centoni, Frank Rimalovski\n"
- + "\n";
-
-
- public AboutDialog(Frame frame) {
- super(frame, "About", message);
- }
-
- }
-