home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / sharpdevelop / 087cSetup.exe / data / templates / file / JavaPanel.xml < prev    next >
Encoding:
Extensible Markup Language  |  2002-03-20  |  1.3 KB  |  54 lines

  1. <?xml version="1.0"?>
  2. <Template Originator="Gary Gray" Language="JAVA" Created="09/05/2001" LastModified="09/05/2001">
  3.     
  4.     <TemplateConfiguration>
  5.            <Name>Java AWT Panel</Name>
  6.            <Icon>JAVA.Project.JavaProjectIcon</Icon>
  7.            <Category>Java</Category>
  8.            <LanguageName>Java</LanguageName>
  9.            <Description>A Basic Java Panel</Description>
  10.     </TemplateConfiguration>
  11.     
  12.     <TemplateFiles>
  13.            <File DefaultExtension=".java" DefaultName="Panel">
  14.  
  15. <![CDATA[
  16. /*
  17.  * panel.java
  18.  *
  19.  * created on ${Date} at ${Time}
  20.  */
  21.  
  22. /**
  23.  *
  24.  * author  Administrator
  25.  */
  26. public class panel extends java.awt.Panel {
  27.  
  28.     /** Creates new form panel */
  29.     public panel() {
  30.         initComponents();
  31.     }
  32.  
  33.     /** This method is called from within the constructor to
  34.      * initialize the form.
  35.      * WARNING: Do NOT modify this code. The content of this method is
  36.      * always regenerated by the Form Editor.
  37.      */
  38.     private void initComponents() {//GEN-BEGIN:initComponents
  39.         setLayout(new java.awt.BorderLayout());
  40.  
  41.     }//GEN-END:initComponents
  42.  
  43.     // Variables declaration - do not modify//GEN-BEGIN:variables
  44.     // End of variables declaration//GEN-END:variables
  45.  
  46. }
  47. ]]>
  48.                 </File>
  49.     </TemplateFiles>
  50.     
  51.     <FileOptions/>
  52.     
  53. </Template>
  54.