-
Bug
-
Resolution: Fixed
-
P2
-
1.2.0
-
1.2alpha
-
sparc
-
solaris_2.5.1
-
Verified
Name: akC57697 Date: 07/28/97
The java.awt.Font c-tor throws unexpected
java.lang.UnsatisfiedLinkError: initIDs
The documentation (JDKTM Playground Specs for Review
Java Development Kit Last Modified July 2 1997 ):
"
public Font(String name,
int style,
int size)
Creates a new font with the specified name, style and point size.
Parameters:
name - the font name
style - the constant style used
size - the point size of the font
"
--------------------------- Test.java --------------------
import java.awt.*;
public class Test {
public static void main(String []args){
Font font = new Font("TimesRoman",Font.PLAIN, 18);
}
}
---------------------------Output--------------------
java.lang.UnsatisfiedLinkError: initIDs
at
at
----------------------------------------------------------
======================================================================