FileDocCategorySizeDatePackage
PrintGraphics.javaAPI DocJava SE 5 API513Fri Aug 26 14:56:46 BST 2005java.awt

PrintGraphics.java

/*
 * @(#)PrintGraphics.java	1.12 03/12/19
 *
 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package java.awt;

/** 
 * An abstract class which provides a print graphics context for a page.
 *
 * @version 	1.12 12/19/03
 * @author 	Amy Fowler
 */
public interface PrintGraphics {

    /**
     * Returns the PrintJob object from which this PrintGraphics 
     * object originated.
     */
    public PrintJob getPrintJob();

}