KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sampleproject > FormFile


1 /*
2  * FormFile.java
3  *
4  * Created on February 3, 2005, 11:43 AM
5  */

6
7 package sampleproject;
8
9 /**
10  *
11  * @author marianm
12  */

13 public class FormFile extends javax.swing.JFrame JavaDoc {
14     
15     /** Creates new form FormFile */
16     public FormFile() {
17         initComponents();
18     }
19     
20     /** This method is called from within the constructor to
21      * initialize the form.
22      * WARNING: Do NOT modify this code. The content of this method is
23      * always regenerated by the Form Editor.
24      */

25     // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
26
private void initComponents() {
27         
28         setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
29         pack();
30     }
31     // </editor-fold>//GEN-END:initComponents
32

33     /**
34      * @param args the command line arguments
35      */

36     public static void main(String JavaDoc args[]) {
37         java.awt.EventQueue.invokeLater(new Runnable JavaDoc() {
38             public void run() {
39                 new FormFile().setVisible(true);
40             }
41         });
42     }
43     
44     // Variables declaration - do not modify//GEN-BEGIN:variables
45
// End of variables declaration//GEN-END:variables
46

47 }
48
Popular Tags