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

JComponent (JProgressBar) update(Graphics) throws NullPointerException

XMLWordPrintable



      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)
      ======================================================================

            svioletsunw Scott Violet (Inactive)
            dblairsunw Dave Blair (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: