Jms.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2.  * @(#)Jms.java 1.0 03/08/05
  3.  *
  4.  * You can modify the template of this file in the
  5.  * directory ..JCreatorTemplatesTemplate_1Project_Name.java
  6.  *
  7.  * You can also create your own project template by making a new
  8.  * folder in the directory ..JCreatorTemplate. Use the other
  9.  * templates as examples.
  10.  *
  11.  */
  12. package myprojects.jms;
  13. import java.awt.*;
  14. import java.awt.event.*;
  15. class Jms extends Frame {
  16. public Jms() {
  17. addWindowListener(new WindowAdapter() {
  18. public void windowClosing(WindowEvent e) {
  19. dispose();
  20. System.exit(0);
  21. }
  22. });
  23. }
  24. public static void main(String args[]) {
  25. System.out.println("Starting Jms...");
  26. Jms mainFrame = new Jms();
  27. mainFrame.setSize(400, 400);
  28. mainFrame.setTitle("Jms");
  29. mainFrame.setVisible(true);
  30. }
  31. }