-
Bug
-
Resolution: Fixed
-
P2
-
1.2.0
-
swing1.0fcs
-
sparc
-
solaris_2.5.1
-
Verified
Name: akC57697 Date: 09/23/97
The com.sun.java.swing.JScrollBar.getUI() always returns null.
This happens because JScrollBar.getUI() returns a value of
protected JScrollBarUI ui field which is overriden and not
initialized in this class.
Swing version is 0.4.1
-------------------Example-----------------------------------
import com.sun.java.swing.*;
public class JScrollBarUItest {
public static void main( String argv[] ) {
JScrollBar c = new JScrollBar();
c.updateUI(); // Set the default UI
System.out.println(c.getUI().getMinimumSize(c)); // Try to work with the UI
}
}
-------------------Output------------------------------------
java.lang.NullPointerException
at JScrollBarUItest.main(JScrollBarUItest.java:10)
======================================================================