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

Error in Component.printAll( Graphics g );

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.1
    • client-libs
    • generic
    • generic



      Name: skT88420 Date: 05/17/99


      In jdk\1.2.1\src\java\awt\Component.java
      method: printAll( Graphics g );
      line number: 1963
      Here is the method:

          public void printAll(Graphics g) {
      ComponentPeer peer = this.peer;
      if (visible && (peer != null)) {
      validate();
      Graphics cg = g.create(0, 0, width, height);
      cg.setFont(getFont());
      try {
      if (peer instanceof java.awt.peer.LightweightPeer) {
      lightweightPrint(g);
      } else {
      peer.print(g);
      }
      } finally {
      cg.dispose();
      }
      }
          }

      The line number reads as follows:
                lightweightPrint(g);
      I believe this should be:
                lightweightPrint( cg );
      My question is, why is the following code being declared and
      setup if it is not used anywhere?
      Graphics cg = g.create(0, 0, width, height);
      cg.setFont(getFont());
      Please let me know if I am wrong.
      (Review ID: 83161)
      ======================================================================

            dmendenhsunw David Mendenhall (Inactive)
            skonchad Sandeep Konchady
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: