(String macro)
| 71 | } |
| 72 | |
| 73 | private boolean runMacro(String macro) { |
| 74 | Interpreter interp = new Interpreter(); |
| 75 | interp.run(macro, null); |
| 76 | if (interp.wasError()) |
| 77 | return false; |
| 78 | else |
| 79 | return true; |
| 80 | } |
| 81 | |
| 82 | public void itemStateChanged(ItemEvent e) { |
| 83 | Choice choice = (Choice)e.getSource(); |