~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to apisupport/project/src/org/netbeans/modules/apisupport/project/ui/wizard/wizard/visualPanel.javx

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<#assign licenseFirst = "/*">
 
2
<#assign licensePrefix = " * ">
 
3
<#assign licenseLast = " */">
 
4
<#include "../Licenses/license-${project.license}.txt">
 
5
 
 
6
package ${PACKAGE_NAME};
 
7
 
 
8
import javax.swing.JPanel;
 
9
 
 
10
public final class ${VISUAL_PANEL_CLASS} extends JPanel {
 
11
 
 
12
    /** Creates new form ${VISUAL_PANEL_CLASS} */
 
13
    public ${VISUAL_PANEL_CLASS}() {
 
14
        initComponents();
 
15
    }
 
16
 
 
17
    @Override
 
18
    public String getName() {
 
19
        return "${STEP_NAME}";
 
20
    }
 
21
 
 
22
    /** This method is called from within the constructor to
 
23
     * initialize the form.
 
24
     * WARNING: Do NOT modify this code. The content of this method is
 
25
     * always regenerated by the Form Editor.
 
26
     */
 
27
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
 
28
    private void initComponents() {
 
29
 
 
30
        org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
 
31
        this.setLayout(layout);
 
32
        layout.setHorizontalGroup(
 
33
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
 
34
            .add(0, 400, Short.MAX_VALUE)
 
35
        );
 
36
        layout.setVerticalGroup(
 
37
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
 
38
            .add(0, 300, Short.MAX_VALUE)
 
39
        );
 
40
    }// </editor-fold>//GEN-END:initComponents
 
41
 
 
42
 
 
43
    // Variables declaration - do not modify//GEN-BEGIN:variables
 
44
    // End of variables declaration//GEN-END:variables
 
45
 
 
46
}
 
47