java.awt.print
Class Paper

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.awt.print.Paper
All Implemented Interfaces:
Cloneable sample code for java.lang.Cloneable definition code for java.lang.Cloneable

public class Paper
extends Object sample code for java.lang.Object definition code for java.lang.Object
implements Cloneable sample code for java.lang.Cloneable definition code for java.lang.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.

See Also:
setSize(double, double) sample code for java.awt.print.Paper.setSize(double, double) definition code for java.awt.print.Paper.setSize(double, double) , setImageableArea(double, double, double, double) sample code for java.awt.print.Paper.setImageableArea(double, double, double, double) definition code for java.awt.print.Paper.setImageableArea(double, double, double, double)

Constructor Summary
Paper sample code for java.awt.print.Paper.Paper() definition code for java.awt.print.Paper.Paper() ()
          Creates a letter sized piece of paper with one inch margins.
 
Method Summary
 Object sample code for java.lang.Object definition code for java.lang.Object clone sample code for java.awt.print.Paper.clone() definition code for java.awt.print.Paper.clone() ()
          Creates a copy of this Paper with the same contents as this Paper.
 double getHeight sample code for java.awt.print.Paper.getHeight() definition code for java.awt.print.Paper.getHeight() ()
          Returns the height of the page in 1/72nds of an inch.
 double getImageableHeight sample code for java.awt.print.Paper.getImageableHeight() definition code for java.awt.print.Paper.getImageableHeight() ()
          Returns the height of this Paper object's imageable area.
 double getImageableWidth sample code for java.awt.print.Paper.getImageableWidth() definition code for java.awt.print.Paper.getImageableWidth() ()
          Returns the width of this Paper object's imageable area.
 double getImageableX sample code for java.awt.print.Paper.getImageableX() definition code for java.awt.print.Paper.getImageableX() ()
          Returns the x coordinate of the upper-left corner of this Paper object's imageable area.
 double getImageableY sample code for java.awt.print.Paper.getImageableY() definition code for java.awt.print.Paper.getImageableY() ()
          Returns the y coordinate of the upper-left corner of this Paper object's imageable area.
 double getWidth sample code for java.awt.print.Paper.getWidth() definition code for java.awt.print.Paper.getWidth() ()
          Returns the width of the page in 1/72nds of an inch.
 void setImageableArea sample code for java.awt.print.Paper.setImageableArea(double, double, double, double) definition code for java.awt.print.Paper.setImageableArea(double, double, double, double) (double x, double y, double width, double height)
          Sets the imageable area of this Paper.
 void setSize sample code for java.awt.print.Paper.setSize(double, double) definition code for java.awt.print.Paper.setSize(double, double) (double width, double height)
          Sets the width and height of this Paper object, which represents the properties of the page onto which printing occurs.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

Paper sample code for java.awt.print.Paper() definition code for java.awt.print.Paper()

public Paper()
Creates a letter sized piece of paper with one inch margins.

Method Detail

clone sample code for java.awt.print.Paper.clone() definition code for java.awt.print.Paper.clone()

public Object sample code for java.lang.Object definition code for java.lang.Object  clone()
Creates a copy of this Paper with the same contents as this Paper.

Overrides:
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
a copy of this Paper.
See Also:
Cloneable sample code for java.lang.Cloneable definition code for java.lang.Cloneable

getHeight sample code for java.awt.print.Paper.getHeight() definition code for java.awt.print.Paper.getHeight()

public double getHeight()
Returns the height of the page in 1/72nds of an inch.

Returns:
the height of the page described by this Paper.

setSize sample code for java.awt.print.Paper.setSize(double, double) definition code for java.awt.print.Paper.setSize(double, double)

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.

Parameters:
width - the value to which to set this Paper object's width
height - the value to which to set this Paper object's height

getWidth sample code for java.awt.print.Paper.getWidth() definition code for java.awt.print.Paper.getWidth()

public double getWidth()
Returns the width of the page in 1/72nds of an inch.

Returns:
the width of the page described by this Paper.

setImageableArea sample code for java.awt.print.Paper.setImageableArea(double, double, double, double) definition code for java.awt.print.Paper.setImageableArea(double, double, double, double)

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.

Parameters:
x, y - the coordinates to which to set the upper-left corner of the imageable area of this Paper
width - the value to which to set the width of the imageable area of this Paper
height - the value to which to set the height of the imageable area of this Paper

getImageableX sample code for java.awt.print.Paper.getImageableX() definition code for java.awt.print.Paper.getImageableX()

public double getImageableX()
Returns the x coordinate of the upper-left corner of this Paper object's imageable area.

Returns:
the x coordinate of the imageable area.

getImageableY sample code for java.awt.print.Paper.getImageableY() definition code for java.awt.print.Paper.getImageableY()

public double getImageableY()
Returns the y coordinate of the upper-left corner of this Paper object's imageable area.

Returns:
the y coordinate of the imageable area.

getImageableWidth sample code for java.awt.print.Paper.getImageableWidth() definition code for java.awt.print.Paper.getImageableWidth()

public double getImageableWidth()
Returns the width of this Paper object's imageable area.

Returns:
the width of the imageable area.

getImageableHeight sample code for java.awt.print.Paper.getImageableHeight() definition code for java.awt.print.Paper.getImageableHeight()

public double getImageableHeight()
Returns the height of this Paper object's imageable area.

Returns:
the height of the imageable area.