(String title)
| 7642 | |
| 7643 | |
| 7644 | private void toFront(String title) { |
| 7645 | if (title==null) |
| 7646 | return; |
| 7647 | Frame frame = WindowManager.getFrame(title); |
| 7648 | if (frame!=null) { |
| 7649 | frame.toFront(); |
| 7650 | WindowManager.setWindow(frame); |
| 7651 | } |
| 7652 | } |
| 7653 | |
| 7654 | private Variable applyMacroToTable() { |
| 7655 | String macro = getFirstString(); |
no test coverage detected