(String arg)
| 17 | static Vector<String> paths = new Vector<String>(); |
| 18 | |
| 19 | public void run(String arg) { |
| 20 | Desktop dtop = Desktop.getDesktop(); |
| 21 | dtop.setOpenFileHandler(this); |
| 22 | dtop.setAboutHandler(this); |
| 23 | dtop.setQuitHandler(this); |
| 24 | } |
| 25 | |
| 26 | @Override |
| 27 | public void handleAbout(AboutEvent e) { |
nothing calls this directly
no test coverage detected