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

style in setFont() works in Netscape/IE4 but not Windows runtime VM

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.0
    • client-libs
    • 2d
    • x86
    • windows_95, windows_98



      Name: gsC80088 Date: 02/16/99


      Encountered a problem with the Windows runtime
      virtual machine and appletviewer with setting the
      style of the font. The problem does not occur
      with Netscape and IE4 which indicates that it's the
      runtime. Here is the code to reproduce the problem:

      // RuntimeBug.java
      import java.applet.Applet;
      import java.awt.Graphics;
      import java.awt.Font;
      import java.awt.event.*;

      public class RuntimeBug extends Applet implements MouseListener
      {
      Font font = new Font("Arial", Font.PLAIN, 12);

      public void init()
      {
      addMouseListener(this);
      }

      public void paint(Graphics g)
      {
      g.setFont(font);
      g.drawString("This is a test of the emergency broadcast system.", 10, 10);
      }

      public void mouseClicked(MouseEvent e)
      {
      int attrib = font.getStyle();

      if(attrib > 2)
      attrib = 0;
      else
      attrib++;

      font = new Font("Arial", attrib, 12);
      repaint();

      System.out.println(font);
      }

      public void mousePressed(MouseEvent e)
      {
      }

      public void mouseReleased(MouseEvent e)
      {
      }

      public void mouseEntered(MouseEvent e)
      {
      }

      public void mouseExited(MouseEvent e)
      {
      }
      }


      // test.html
      <html>
      <head><title>Font Testing Applet</title></head>
      <body><APPLET code=RuntimeBug.class codeBase="." height=160 width=460> </APPLET>
      </body></html>
      (Review ID: 47948)
      ======================================================================

            pkejriwasunw Parry Kejriwal (Inactive)
            gstone Greg Stone
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: