1 /* 2 * @(#)PrintGraphics.java 1.12 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package java.awt; 9 10 /** 11 * An abstract class which provides a print graphics context for a page. 12 * 13 * @version 1.12 12/19/03 14 * @author Amy Fowler 15 */ 16 public interface PrintGraphics { 17 18 /** 19 * Returns the PrintJob object from which this PrintGraphics 20 * object originated. 21 */ 22 public PrintJob getPrintJob(); 23 24 } 25