-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
beta
-
sparc
-
solaris_2.6
-
Verified
Name: ooR10001 Date: 02/01/2001
javax.swing.JFormattedTextField.getPropertyChangeListeners() method throws
NullPointerException.
Following test demonstrates this bug:
----------------------------
import javax.swing.JFormattedTextField;
public class test {
public static void main(String[] args) {
JFormattedTextField jftf =
new JFormattedTextField(new java.text.SimpleDateFormat());
java.beans.PropertyChangeListener[] pcls =
jftf.getPropertyChangeListeners();
}
}
----------------------------
Test's output:
------------------------
Exception in thread "main" java.lang.NullPointerException
at java.awt.Component.getPropertyChangeListeners(Component.java:6286)
at test.main(test.java:8)
------------------------
It needs to be fixed.
======================================================================