src/share/classes/sun/awt/FontConfiguration.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 1502,1515 **** } System.out.println("\n----elcIDs----------------"); printTable(table_elcIDs, 0); System.out.println("\n----sequences-------------"); for (int ii = 0; ii< table_elcIDs.length; ii++) { ! System.out.println(" " + ii + "/" + getString((short)table_elcIDs[ii])); short[] ss = getShortArray(table_sequences[ii * NUM_FONTS + 0]); for (int jj = 0; jj < ss.length; jj++) { ! System.out.println(" " + getString((short)table_scriptIDs[ss[jj]])); } } System.out.println("\n----fontfileNameIDs-------"); printTable(table_fontfileNameIDs, 0); --- 1502,1515 ---- } System.out.println("\n----elcIDs----------------"); printTable(table_elcIDs, 0); System.out.println("\n----sequences-------------"); for (int ii = 0; ii< table_elcIDs.length; ii++) { ! System.out.println(" " + ii + "/" + getString(table_elcIDs[ii])); short[] ss = getShortArray(table_sequences[ii * NUM_FONTS + 0]); for (int jj = 0; jj < ss.length; jj++) { ! System.out.println(" " + getString(table_scriptIDs[ss[jj]])); } } System.out.println("\n----fontfileNameIDs-------"); printTable(table_fontfileNameIDs, 0);
*** 1531,1543 **** + getString(table_awtfontpaths[ii])); } System.out.println("\n----proportionals--------"); for (int ii = 0; ii < table_proportionals.length; ii++) { System.out.println(" " ! + getString((short)table_componentFontNameIDs[table_proportionals[ii++]]) + " -> " ! + getString((short)table_componentFontNameIDs[table_proportionals[ii]])); } int i = 0; System.out.println("\n----alphabeticSuffix----"); while (i < table_alphabeticSuffix.length) { System.out.println(" " + getString(table_elcIDs[table_alphabeticSuffix[i++]]) --- 1531,1543 ---- + getString(table_awtfontpaths[ii])); } System.out.println("\n----proportionals--------"); for (int ii = 0; ii < table_proportionals.length; ii++) { System.out.println(" " ! + getString(table_componentFontNameIDs[table_proportionals[ii++]]) + " -> " ! + getString(table_componentFontNameIDs[table_proportionals[ii]])); } int i = 0; System.out.println("\n----alphabeticSuffix----"); while (i < table_alphabeticSuffix.length) { System.out.println(" " + getString(table_elcIDs[table_alphabeticSuffix[i++]])