1. /*
  2. * @(#)PrintGraphics.java 1.9 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.awt;
  11. /**
  12. * An abstract class which provides a print graphics context for a page.
  13. *
  14. * @version 1.9 02/02/00
  15. * @author Amy Fowler
  16. */
  17. public interface PrintGraphics {
  18. /**
  19. * Returns the PrintJob object from which this PrintGraphics
  20. * object originated.
  21. */
  22. public PrintJob getPrintJob();
  23. }