Closedown

This commit is contained in:
boccioli_m
2015-06-08 09:02:37 +02:00
parent ec0e3f5cbd
commit 51c9d60421
2 changed files with 5 additions and 5 deletions

View File

@@ -55,9 +55,8 @@ public class TestingList extends Panel {
case "power-supply":
Object ret = eval("ret");
if (ret != null) {
SwingUtils.showMessage(getComponent(), "", ret.toString() + " - " + ret.getClass().getName());
testingList.showResult(ret.toString());
//SwingUtils.showMessage(getComponent(), "", ret.toString() + " - " + ret.getClass().getName());
testingList.showResult(ret.toString());
}
break;
}
@@ -81,6 +80,7 @@ public class TestingList extends Panel {
public void showResult(String res){
txtOutput.setText(res);
jTable1.setValueAt(res, 1, 3);
}
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents