-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.3.0
-
sparc
-
solaris_2.6
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.
======================================================================
- duplicates
-
JDK-4290704 getListener Project Completion
-
- Closed
-