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