Closedown

This commit is contained in:
boccioli_m
2015-06-17 08:38:15 +02:00
parent a9f29be4d5
commit cdaf0da6c6
2 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -136,7 +136,7 @@
<SubComponents>
<Component class="javax.swing.JCheckBox" name="jCheckBox1">
<Properties>
<Property name="toolTipText" type="java.lang.String" value="Select/Deselect All Tests"/>
<Property name="toolTipText" type="java.lang.String" value="Select/Deselec thet highlighted tests"/>
</Properties>
<Events>
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jCheckBox1ActionPerformed"/>
@@ -152,7 +152,7 @@
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
<Image iconType="3" name="/icons/ArrowDown - 24.png"/>
</Property>
<Property name="toolTipText" type="java.lang.String" value="Move the selected tests down"/>
<Property name="toolTipText" type="java.lang.String" value="Move the highlighted tests down"/>
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[25, 25]"/>
</Property>
@@ -177,7 +177,7 @@
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
<Image iconType="3" name="/icons/ArrowUp - 24.png"/>
</Property>
<Property name="toolTipText" type="java.lang.String" value="Move the selected tests up"/>
<Property name="toolTipText" type="java.lang.String" value="Move the highlighted tests up"/>
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[25, 25]"/>
</Property>
+5 -5
View File
@@ -337,7 +337,7 @@ public class TestingList extends Panel {
jPanel2.setLayout(new java.awt.BorderLayout());
jCheckBox1.setToolTipText("Select/Deselect All Tests");
jCheckBox1.setToolTipText("Select/Deselec thet highlighted tests");
jCheckBox1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox1ActionPerformed(evt);
@@ -346,7 +346,7 @@ public class TestingList extends Panel {
jPanel2.add(jCheckBox1, java.awt.BorderLayout.WEST);
jButtonMoveDown.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/ArrowDown - 24.png"))); // NOI18N
jButtonMoveDown.setToolTipText("Move the selected tests down");
jButtonMoveDown.setToolTipText("Move the highlighted tests down");
jButtonMoveDown.setMaximumSize(new java.awt.Dimension(25, 25));
jButtonMoveDown.setMinimumSize(new java.awt.Dimension(25, 25));
jButtonMoveDown.setPreferredSize(new java.awt.Dimension(25, 25));
@@ -358,7 +358,7 @@ public class TestingList extends Panel {
jPanel2.add(jButtonMoveDown, java.awt.BorderLayout.SOUTH);
jButtonMoveUp.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/ArrowUp - 24.png"))); // NOI18N
jButtonMoveUp.setToolTipText("Move the selected tests up");
jButtonMoveUp.setToolTipText("Move the highlighted tests up");
jButtonMoveUp.setMaximumSize(new java.awt.Dimension(25, 25));
jButtonMoveUp.setMinimumSize(new java.awt.Dimension(25, 25));
jButtonMoveUp.setPreferredSize(new java.awt.Dimension(25, 25));
@@ -622,8 +622,8 @@ public class TestingList extends Panel {
sTestPath = jTable1.getValueAt(row, COL.TESTPATH.ordinal()).toString();;
File f = new File(sTestPath);
if(!f.exists() || f.isDirectory()){
logger.log(Level.SEVERE, "Test file not found: " + sTestPath);
showResult(sDeviceName, sTestPath, "Test file not found: " + sTestPath, TestStatus.FAILURE.toString());
logger.log(Level.SEVERE, "Test script not found: " + sTestPath);
showResult(sDeviceName, sTestPath, "Test script not found: " + sTestPath, TestStatus.FAILURE.toString());
executeTest(position+1);
return;
}