You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
526 B
42 lines
526 B
/*
|
|
* Copyright (c) 1996, 1997, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.awt;
|
|
|
|
/**
|
|
* An abstract class which provides a print graphics context for a page.
|
|
*
|
|
* @author Amy Fowler
|
|
*/
|
|
public interface PrintGraphics {
|
|
|
|
/**
|
|
* Returns the PrintJob object from which this PrintGraphics
|
|
* object originated.
|
|
*/
|
|
public PrintJob getPrintJob();
|
|
|
|
}
|