| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.awt.print.Paper
public class Paper
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.
 
setSize(double, double), 
setImageableArea(double, double, double, double)| Constructor Summary | |
|---|---|
| Paper()Creates a letter sized piece of paper with one inch margins. | |
| Method Summary | |
|---|---|
|  Object | clone()Creates a copy of this Paperwith the same contents
 as thisPaper. | 
|  double | getHeight()Returns the height of the page in 1/72nds of an inch. | 
|  double | getImageableHeight()Returns the height of this Paperobject's imageable
 area. | 
|  double | getImageableWidth()Returns the width of this Paperobject's imageable
 area. | 
|  double | getImageableX()Returns the x coordinate of the upper-left corner of this Paperobject's imageable area. | 
|  double | getImageableY()Returns the y coordinate of the upper-left corner of this Paperobject's imageable area. | 
|  double | getWidth()Returns the width of the page in 1/72nds of an inch. | 
|  void | setImageableArea(double x,
                 double y,
                 double width,
                 double height)Sets the imageable area of this Paper. | 
|  void | setSize(double width,
        double height)Sets the width and height of this Paperobject, which represents the properties of the page onto
 which printing occurs. | 
| Methods inherited from class java.lang.Object | 
|---|
| equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public Paper()
| Method Detail | 
|---|
public Object clone()
Paper with the same contents
 as this Paper.
clone in class ObjectPaper.Cloneablepublic double getHeight()
Paper.
public void setSize(double width,
                    double height)
Paper
 object, which represents the properties of the page onto
 which printing occurs.
 The dimensions are supplied in 1/72nds of
 an inch.
width - the value to which to set this Paper
 object's widthheight - the value to which to set this Paper
 object's heightpublic double getWidth()
Paper.
public void setImageableArea(double x,
                             double y,
                             double width,
                             double height)
Paper.  The 
 imageable area is the area on the page in which printing
 occurs.
x, y - the coordinates to which to set the
 upper-left corner of the imageable area of this Paperwidth - the value to which to set the width of the 
 imageable area of this Paperheight - the value to which to set the height of the
 imageable area of this Paperpublic double getImageableX()
Paper object's imageable area.
public double getImageableY()
Paper object's imageable area.
public double getImageableWidth()
Paper object's imageable
 area.
public double getImageableHeight()
Paper object's imageable
 area.
| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.