Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4279894

JComponent.getListeners() does not work for PropertyChangeListeners

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.3.0
    • client-libs



      Name: asC58863 Date: 10/11/99


      (See JavaDoc comments)
      "public EventListener[] getListeners(Class listenerType)
           Return an array of all the listeners that were added to this JComponent with
           addXXXListener(), where XXX is the name of the listenerType argument.
      [...]
           If no such listener list exists, then an empty array is returned.
      "

      Here is the example demonstrating the bug:
      ------------------ Test.java -----------------
      import javax.swing.*;
      import java.beans.*;

      public class Test {
          public static void main(String[] argv) {
              JList c = new JList();
              StubPropertyChangeListener pcl1 = new StubPropertyChangeListener();
              StubPropertyChangeListener pcl2 = new StubPropertyChangeListener();
              StubPropertyChangeListener pcl3 = new StubPropertyChangeListener();
              c.addPropertyChangeListener(pcl1);
              c.addPropertyChangeListener(pcl2);
              c.addPropertyChangeListener(pcl3);
              System.out.println(" "+c.getListeners(StubPropertyChangeListener.class).length);
              System.exit(0);
          }
      }
      class StubPropertyChangeListener implements PropertyChangeListener {
          public void propertyChange(PropertyChangeEvent pce) {
          }
      }
      -------------- Output from the test -----------------
       0
      ------------------------------------------------------

      As it seen from the source code, listenerList is never used except
      this method. It seems to me listenerList.add(XXXListener.class)
      should be invoked at the end of each JComponent.addXXXListener()
      method to let getListeners() method works properly.

      ======================================================================

            bchristi Brent Christian
            anssunw Ans Ans (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: