Closedown

This commit is contained in:
boccioli_m
2015-06-02 15:19:36 +02:00
parent 38eba825f2
commit 4315b08139
2 changed files with 23 additions and 9 deletions
+7 -4
View File
@@ -17,18 +17,18 @@
<DimensionLayout dim="0">
<Group type="103" groupAlignment="0" attributes="0">
<Group type="102" alignment="0" attributes="0">
<EmptySpace min="-2" pref="336" max="-2" attributes="0"/>
<EmptySpace min="-2" pref="244" max="-2" attributes="0"/>
<Component id="jButton1" min="-2" max="-2" attributes="0"/>
<EmptySpace pref="405" max="32767" attributes="0"/>
<EmptySpace pref="497" max="32767" attributes="0"/>
</Group>
</Group>
</DimensionLayout>
<DimensionLayout dim="1">
<Group type="103" groupAlignment="0" attributes="0">
<Group type="102" alignment="0" attributes="0">
<EmptySpace min="-2" pref="247" max="-2" attributes="0"/>
<EmptySpace min="-2" pref="198" max="-2" attributes="0"/>
<Component id="jButton1" min="-2" max="-2" attributes="0"/>
<EmptySpace pref="401" max="32767" attributes="0"/>
<EmptySpace pref="450" max="32767" attributes="0"/>
</Group>
</Group>
</DimensionLayout>
@@ -38,6 +38,9 @@
<Properties>
<Property name="text" type="java.lang.String" value="jButton1"/>
</Properties>
<Events>
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton1ActionPerformed"/>
</Events>
</Component>
</SubComponents>
</Form>
+16 -5
View File
@@ -41,7 +41,9 @@ public class TestingList extends Panel {
public class NetbeansPluginPanel extends MonitoredPanel {
public NetbeansPluginPanel() {
initComponents();
}
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
@@ -49,24 +51,33 @@ public class TestingList extends Panel {
jButton1 = new javax.swing.JButton();
jButton1.setText("jButton1");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(336, 336, 336)
.addGap(244, 244, 244)
.addComponent(jButton1)
.addContainerGap(405, Short.MAX_VALUE))
.addContainerGap(497, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(247, 247, 247)
.addGap(198, 198, 198)
.addComponent(jButton1)
.addContainerGap(401, Short.MAX_VALUE))
.addContainerGap(450, Short.MAX_VALUE))
);
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_jButton1ActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;