src/java.desktop/share/classes/sun/font/FontUtilities.java

Print this page

        

*** 376,391 **** * This returns a FontUIResource as that is the Font sub-class needed * by Swing. * Suggested usage is something like : * FontUIResource fuir; * Font desktopFont = getDesktopFont(..); - * // NOTE even if fontSupportsDefaultEncoding returns true because - * // you get Tahoma and are running in an English locale, you may - * // still want to just call getCompositeFontUIResource() anyway - * // as only then will you get fallback fonts - eg for CJK. * if (FontManager.fontSupportsDefaultEncoding(desktopFont)) { ! * fuir = new FontUIResource(..); * } else { * fuir = FontManager.getCompositeFontUIResource(desktopFont); * } * return fuir; */ --- 376,387 ---- * This returns a FontUIResource as that is the Font sub-class needed * by Swing. * Suggested usage is something like : * FontUIResource fuir; * Font desktopFont = getDesktopFont(..); * if (FontManager.fontSupportsDefaultEncoding(desktopFont)) { ! * fuir = new FontUIResource(desktopFont); * } else { * fuir = FontManager.getCompositeFontUIResource(desktopFont); * } * return fuir; */