home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Micrsoft / VJ / VJ98 / PROJITEM / FORM / CONTROL.JAV next >
Text File  |  1998-02-11  |  874b  |  40 lines

  1. // %FILENAME%.java
  2.  
  3. import wfc.core.*;
  4. import wfc.ui.*;
  5.  
  6. /**
  7. * This class is a visual component. The entry point for class execution
  8. * is the constructor.
  9. */
  10. public class %FILENAME% extends UserControl
  11. {
  12.     public %FILENAME%()
  13.     {
  14.         // Required for Visual J++ Form Designer support
  15.         initForm();
  16.  
  17.         // TODO: Add any constructor code after initForm call
  18.     }
  19.  
  20.     /**
  21.      * NOTE: The following code is required by the Visual J++ form
  22.      * designer.  It can be modified using the form editor.  Do not
  23.      * modify it using the code editor.
  24.      */
  25.  
  26.     Container components = new Container();
  27.  
  28.     private void initForm()
  29.     {
  30.         this.setSize(new Point(300, 300));
  31.         this.setText("%FILENAME%");
  32.     }
  33.     // NOTE: End of form designer support code
  34.  
  35.     public static class ClassInfo extends UserControl.ClassInfo
  36.     {
  37.         // TODO: Add your property and event infos here
  38.     }
  39. }
  40.