Closedown

This commit is contained in:
boccioli_m
2015-06-10 10:14:21 +02:00
parent 82de0e0ed4
commit 4245f03258

View File

@@ -65,6 +65,7 @@ public class TestingList extends Panel {
//start next test
if(iCurrentTestPos>0)
{
Thread.sleep(500);
testingList.executeTest(iCurrentTestPos+1);
}
}
@@ -391,8 +392,8 @@ public class TestingList extends Panel {
String sDeviceName;
String sTestName;
HashMap args = new HashMap();
//scan through the table and execute the selected tests
int row = position;
//scan through the table starting from 'position' and execute the first selected test found
int row = position;
if (row <= jTable1.getRowCount() ) {
for(row = position ; row <= jTable1.getRowCount() ; row++){
bSelected = (boolean) jTable1.getValueAt(row, COL_CHECK);