home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / vj / VJ98 / ProjItem / Form / control.jav next >
Encoding:
Text File  |  1998-05-31  |  842 b   |  39 lines

  1. import com.ms.wfc.core.*;
  2. import com.ms.wfc.ui.*;
  3.  
  4. /**
  5.  * This class is a visual component. The entry point for class execution
  6.  * is the constructor.
  7.  */
  8. public class %FILENAME% extends UserControl
  9. {
  10.     public %FILENAME%()
  11.     {
  12.         super();
  13.  
  14.         // Required for Visual J++ Form Designer support
  15.         //
  16.         initForm();
  17.  
  18.         // TODO: Add any constructor code after initForm call
  19.     }
  20.  
  21.     /**
  22.      * NOTE: The following code is required by the Visual J++ form
  23.      * designer.  It can be modified using the form editor.  Do not
  24.      * modify it using the code editor.
  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.  
  34.     public static class ClassInfo extends UserControl.ClassInfo
  35.     {
  36.         // TODO: Add your property and event infos here
  37.     }
  38. }
  39.