< prev index next >

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

Print this page

        

@@ -77,11 +77,11 @@
 
 /**
  * A class which initiates and executes a print job using
  * the underlying PrinterJob graphics conversions.
  *
- * @see Toolkit#getPrintJob
+ * @see java.awt.Toolkit#getPrintJob
  *
  */
 public class PrintJob2D extends PrintJob implements Printable, Runnable {
 
     private static final MediaType SIZES[] = {

@@ -748,11 +748,11 @@
     /**
      * Gets a Graphics object that will draw to the next page.
      * The page is sent to the printer when the graphics
      * object is disposed.  This graphics object will also implement
      * the PrintGraphics interface.
-     * @see PrintGraphics
+     * @see java.awt.PrintGraphics
      */
     public Graphics getGraphics() {
 
         Graphics printGraphics = null;
 

@@ -935,11 +935,11 @@
      * specified by <code>pageFormat</code>.  The zero based index
      * of the requested page is specified by <code>pageIndex</code>.
      * If the requested page does not exist then this method returns
      * NO_SUCH_PAGE; otherwise PAGE_EXISTS is returned.
      * The <code>Graphics</code> class or subclass implements the
-     * {@link PrinterGraphics} interface to provide additional
+     * {@link java.awt.PrintGraphics} interface to provide additional
      * information.  If the <code>Printable</code> object
      * aborts the print job then it throws a {@link PrinterException}.
      * @param graphics the context into which the page is drawn
      * @param pageFormat the size and orientation of the page being drawn
      * @param pageIndex the zero based index of the page to be drawn
< prev index next >