-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
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)
======================================================================
- duplicates
-
JDK-4179223 Font("Arial", Font.PLAIN, 32).deriveFont(Font.ITALIC) renders plain text
-
- Resolved
-