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. package java.awt;
  8. /**
  9. * An abstract class which provides a print graphics context for a page.
  10. *
  11. * @version 1.12 12/19/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. }