This commit is contained in:
boccioli_m
2015-06-10 10:19:49 +02:00
parent fc00a95f12
commit 71e8b8136a

View File

@@ -289,7 +289,11 @@ public class TestingList extends Panel {
}// </editor-fold>//GEN-END:initComponents
private void jButtonRunActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonRunActionPerformed
this.executeTest(0);
try {
this.executeTest(0);
} catch (InterruptedException ex) {
Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex);
}
}//GEN-LAST:event_jButtonRunActionPerformed
private void jCheckBox1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCheckBox1ActionPerformed
@@ -366,7 +370,7 @@ public class TestingList extends Panel {
// End of variables declaration//GEN-END:variables
//execute the selected tests in the list, starting from the position
public void executeTest(int position){
public void executeTest(int position) throws InterruptedException{
boolean bSelected = false;
String sDeviceName;
String sTestName;