class MyFrame extends Frame { public boolean action(Event evt, Object what) { if ("Quit".equals(evt.arg) { // handle Quit button ... return true; } // ... return super(evt, what); } }