protected void loadIcons() { int i; java.net.URL imageURL = null; for (i = 0; i < planeIconPaths.length; i++) { try { imageURL = new java.net.URL(atc_obj.codeBase + planeIconPaths[i]); } catch (Exception e) { imageURL = null; } if (imageURL == null) { System.err.println("Can't load icon " + i); atc_obj.stopATC(); } planeIcons[i] = new ImageIcon(imageURL); } }
public void keyTyped(KeyEvent e) { char key = e.getKeyChar(); if (key == '\n') atc_obj.getInputhandler().processCommand(); else atc_obj.getInputhandler().processKey(key); }
public void windowClosing(WindowEvent event) { atc_obj.stopATC(); }
public void actionPerformed(ActionEvent e) { atc_obj.getInputhandler().processActionCommand(e.getActionCommand()); }