POLITECHNIKA RZESZOWSKA - Wydział
Podstawowe metody klasy ActionEvent
■ Metoda getModifiers () - umożliwia określenie, które klawisze były przyciśnięte w czasie powstania zdarzenia, np.:
public void actionPerformed(ActionEvent e) {
if (e.getActionCommand() == "myCommand") {
if (e.getModifiers()==e.ALT_MASK) methodl(); else method2();
ł
}
JAM 5