< prev index next >

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

Print this page

        

*** 522,531 **** --- 522,535 ---- public int charToGlyph(int wchar) { return getMapper().charToGlyph(wchar); } + public void charsToGlyphs(int count, int[] wchars, int[] glyphs) { + getMapper().charsToGlyphs(count, wchars, glyphs); + } + public int getMissingGlyphCode() { return getMapper().getMissingGlyphCode(); } public boolean canDisplay(char c) {
< prev index next >