home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Micrsoft / VJ / VJ98 / VJPROJS / APPLICAT / WINAPPLI / WINAPPLI.JAV next >
Text File  |  1998-02-11  |  1KB  |  55 lines

  1. // Form1.java
  2.  
  3. import wfc.app.*;
  4. import wfc.core.*;
  5. import wfc.ui.*;
  6.  
  7. /**
  8. * This class can take a variable number of parameters on the command
  9. * line. Program execution begins with the main() method. The class
  10. * constructor is not invoked unless an object of type 'Form1'
  11. * created in the main() method.
  12. */
  13. public class Form1 extends Form
  14. {
  15.     public Form1()
  16.     {
  17.         // Required for Visual J++ Form Designer support
  18.         initForm();        
  19.  
  20.         // TODO: Add any constructor code after initForm call
  21.     }
  22.  
  23.     /**
  24.      * The main entry point for the application. 
  25.      *
  26.      * @param args Array of parameters passed to the application
  27.      * via the command line.
  28.      */
  29.     public static void main(String args[])
  30.     {
  31.         Application.run(new Form1());
  32.     }
  33.  
  34.  
  35.     /**
  36.     * NOTE: The following code is required by the Visual J++ form
  37.     * designer.  It can be modified using the form editor.  Do not
  38.     * modify it using the code editor.
  39.     */
  40.  
  41.     Container components = new Container();
  42.  
  43.     private void initForm()
  44.     {
  45.         this.setSize (new Point(300,300));
  46.         this.setText ("Form1");
  47.     }
  48.     // NOTE: End of form designer support code
  49.  
  50.     public static class ClassInfo extends Form.ClassInfo
  51.     {
  52.         // TODO: Add your property and event infos here
  53.     }
  54. }
  55.