01: /*
02: * FormFile.java
03: *
04: * Created on February 3, 2005, 11:43 AM
05: */
06:
07: package sampleproject;
08:
09: /**
10: *
11: * @author marianm
12: */
13: public class FormFile extends javax.swing.JFrame {
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:
32: // </editor-fold>//GEN-END:initComponents
33:
34: /**
35: * @param args the command line arguments
36: */
37: public static void main(String args[]) {
38: java.awt.EventQueue.invokeLater(new Runnable() {
39: public void run() {
40: new FormFile().setVisible(true);
41: }
42: });
43: }
44:
45: // Variables declaration - do not modify//GEN-BEGIN:variables
46: // End of variables declaration//GEN-END:variables
47:
48: }
|