jdk/src/share/classes/java/awt/Button.java
changeset 15318 607db339afcc
parent 5506 202f599c92aa
child 20451 4cedf4e1560a
equal deleted inserted replaced
15317:a5c7745e4127 15318:607db339afcc
   298      * @see             #removeActionListener
   298      * @see             #removeActionListener
   299      * @see             java.awt.event.ActionListener
   299      * @see             java.awt.event.ActionListener
   300      * @since 1.4
   300      * @since 1.4
   301      */
   301      */
   302     public synchronized ActionListener[] getActionListeners() {
   302     public synchronized ActionListener[] getActionListeners() {
   303         return (ActionListener[]) (getListeners(ActionListener.class));
   303         return getListeners(ActionListener.class);
   304     }
   304     }
   305 
   305 
   306     /**
   306     /**
   307      * Returns an array of all the objects currently registered
   307      * Returns an array of all the objects currently registered
   308      * as <code><em>Foo</em>Listener</code>s
   308      * as <code><em>Foo</em>Listener</code>s