< prev index next >

src/java.desktop/share/classes/sun/print/PSPrinterJob.java

Print this page

        

*** 1212,1221 **** --- 1212,1222 ---- /* return of 0 means unsupported. Other return indicates the number * of distinct PS fonts needed to draw this text. This saves us * doing this processing one extra time. */ + @SuppressWarnings("deprecation") protected int platformFontCount(Font font, String str) { if (mFontProps == null) { return 0; } CharsetString[] acs =
*** 1226,1235 **** --- 1227,1237 ---- } int[] psFonts = getPSFontIndexArray(font, acs); return (psFonts == null) ? 0 : psFonts.length; } + @SuppressWarnings("deprecation") protected boolean textOut(Graphics g, String str, float x, float y, Font mLastFont, FontRenderContext frc, float width) { boolean didText = true;
*** 2121,2130 **** --- 2123,2133 ---- * @param x the x location of the applet panel in the browser window * @param y the y location of the applet panel in the browser window * @param w the width of the applet panel in the browser window * @param h the width of the applet panel in the browser window */ + @SuppressWarnings("deprecation") public PluginPrinter(Component applet, PrintStream stream, int x, int y, int w, int h) { this.applet = applet;
< prev index next >