Closedown

This commit is contained in:
boccioli_m
2015-06-05 14:12:24 +02:00
parent 12b8016449
commit daf7208606

View File

@@ -73,6 +73,24 @@ public class TestingList extends Panel {
buildTable();
}
@SuppressWarnings("unchecked")
protected void onExecutedFile(String fileName) {
try {
switch(fileName){
case "power-supply":
Object ret = eval("ret");
if (ret != null) {
showResult(ret.toString());
}
break;
}
}
catch (Exception ex) {
}
}
public void showResult(String res){
txtOutput.setText(res);