-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
x86
-
windows_nt
Name: dbT83986 Date: 12/16/98
Calling JComponent.update(Graphics g) throws an exception NullPointerException even though the JComponent and
the Graphics are not null.
Easy to reproduce!
This worked correctly in JDK 1.1.7A. Now with JDK 1.2 release for Windows NT (downloaded 12/04/98), it fails. This code
below is a very simplifed version of my code which now fails consistently.
If I don't get a fix or workaround soon, I'll have to revert back to 1.1.7A.
// --------------------------------------------
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class JProgress_update
extends JFrame
{
private JProgressBar progress;
public static void main(String[] args)
{
new JProgress_update();
}
public JProgress_update()
{
super("JProgress_update");
// Window adapter to listen for frame closing
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent event)
{
System.exit(0);
}
});
Container client = getContentPane();
client.setLayout(new BorderLayout());
progress = new JProgressBar(0,100);
client.add(progress, BorderLayout.CENTER);
setSize(400,300);
show();
progress.setValue(27);
progress.update(progress.getGraphics());
}
} // JInfoProgress_update
(Review ID: 47511)
======================================================================
- duplicates
-
JDK-4191142 Calling paint() on a non-visible component throws NullPointerException
-
- Resolved
-