Home » openjdk-7 » java » awt » print » [javadoc | source]
java.awt.print
public class: Paper [javadoc | source]
java.lang.Object
   java.awt.print.Paper

All Implemented Interfaces:
    Cloneable

The Paper class describes the physical characteristics of a piece of paper.

When creating a Paper object, it is the application's responsibility to ensure that the paper size and the imageable area are compatible. For example, if the paper size is changed from 11 x 17 to 8.5 x 11, the application might need to reduce the imageable area so that whatever is printed fits on the page.

Constructor:
 public Paper() 
Method from java.awt.print.Paper Summary:
clone,   getHeight,   getImageableHeight,   getImageableWidth,   getImageableX,   getImageableY,   getWidth,   setImageableArea,   setSize
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.awt.print.Paper Detail:
 public Object clone() 
    Creates a copy of this Paper with the same contents as this Paper.
 public double getHeight() 
    Returns the height of the page in 1/72nds of an inch.
 public double getImageableHeight() 
    Returns the height of this Paper object's imageable area.
 public double getImageableWidth() 
    Returns the width of this Paper object's imageable area.
 public double getImageableX() 
    Returns the x coordinate of the upper-left corner of this Paper object's imageable area.
 public double getImageableY() 
    Returns the y coordinate of the upper-left corner of this Paper object's imageable area.
 public double getWidth() 
    Returns the width of the page in 1/72nds of an inch.
 public  void setImageableArea(double x,
    double y,
    double width,
    double height) 
    Sets the imageable area of this Paper. The imageable area is the area on the page in which printing occurs.
 public  void setSize(double width,
    double height) 
    Sets the width and height of this Paper object, which represents the properties of the page onto which printing occurs. The dimensions are supplied in 1/72nds of an inch.