~ubuntu-branches/ubuntu/karmic/monodevelop-java/karmic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0"?>
<Template Originator="Gary Gray" Language="JAVA" Created="09/05/2001" LastModified="09/05/2001">
	
	<TemplateConfiguration>
           <_Name>AWT Panel</_Name>
           <Icon>md-gui-file</Icon>
           <_Category>AWT</_Category>
           <LanguageName>Java</LanguageName>
           <_Description>Creates a Java AWT panel.</_Description>
	</TemplateConfiguration>
	
	<TemplateFiles>
           <File DefaultExtension=".java" DefaultName="Panel">

<![CDATA[
/*
 * panel.java
 *
 * created on ${Date} at ${Time}
 */

/**
 *
 * author  Administrator
 */
public class panel extends java.awt.Panel {

    /** Creates new form panel */
    public panel() {
        initComponents();
    }

    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
     */
    private void initComponents() {//GEN-BEGIN:initComponents
        setLayout(new java.awt.BorderLayout());

    }//GEN-END:initComponents

    // Variables declaration - do not modify//GEN-BEGIN:variables
    // End of variables declaration//GEN-END:variables

}
]]>
                </File>
	</TemplateFiles>
	
	<FileOptions/>
	
</Template>