Closedown

This commit is contained in:
boccioli_m
2015-06-10 10:11:22 +02:00
parent 59c1e226d2
commit 123be5752a
2 changed files with 4 additions and 106 deletions

View File

@@ -394,7 +394,10 @@ public class TestingList extends Panel {
//scan through the table and execute the selected tests
int row = position;
if (row <= jTable1.getRowCount() ) {
bSelected = (boolean) jTable1.getValueAt(row, COL_CHECK);
for(row = position ; row <= jTable1.getRowCount() ; row++){
bSelected = (boolean) jTable1.getValueAt(row, COL_CHECK);
if(bSelected) break;
}
if (bSelected) {
sDeviceName = jTable1.getValueAt(row, COL_DEVICENAME).toString();
sTestName = jTable1.getValueAt(row, COL_TESTNAME).toString();