java.awt.print

Class Paper

Implemented Interfaces:
Cloneable

public class Paper
extends Object
implements Cloneable

This class describes a particular type of paper.

Constructor Summary

Paper()
This method creates a letter sized paper with one inch margins

Method Summary

Object
clone()
This method creates a copy of this object.
double
getHeight()
This method returns the height of the paper in 1/72nds of an inch.
double
getImageableHeight()
Returns the height of the imageable area of the paper.
double
getImageableWidth()
Returns the width of the imageable area of the paper.
double
getImageableX()
This method returns the X coordinate of the upper left hand corner of the imageable area of the paper.
double
getImageableY()
This method returns the Y coordinate of the upper left hand corner of the imageable area of the paper.
double
getWidth()
Returns the width of the paper in 1/72nds of an inch.
void
setImageableArea(double imageableX, double imageableY, double imageableWidth, double imageableHeight)
This method sets the imageable area of the paper by specifying the coordinates of the upper left hand corner of that area, and its length and height.
void
setSize(double width, double height)
This method sets the size of the paper to the specified width and height, which are specified in 1/72nds of an inch.

Methods inherited from class java.lang.Object

clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Details

Paper

public Paper()
This method creates a letter sized paper with one inch margins

Method Details

clone

public Object clone()
This method creates a copy of this object.
Overrides:
clone in interface Object
Returns:
A copy of this object.

getHeight

public double getHeight()
This method returns the height of the paper in 1/72nds of an inch.
Returns:
The height of the paper in 1/72nds of an inch.

getImageableHeight

public double getImageableHeight()
Returns the height of the imageable area of the paper.
Returns:
The height of the imageable area of the paper.

getImageableWidth

public double getImageableWidth()
Returns the width of the imageable area of the paper.
Returns:
The width of the imageable area of the paper.

getImageableX

public double getImageableX()
This method returns the X coordinate of the upper left hand corner of the imageable area of the paper.
Returns:
The X coordinate of the upper left hand corner of the imageable area of the paper.

getImageableY

public double getImageableY()
This method returns the Y coordinate of the upper left hand corner of the imageable area of the paper.
Returns:
The Y coordinate of the upper left hand corner of the imageable area of the paper.

getWidth

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

setImageableArea

public void setImageableArea(double imageableX,
                             double imageableY,
                             double imageableWidth,
                             double imageableHeight)
This method sets the imageable area of the paper by specifying the coordinates of the upper left hand corner of that area, and its length and height. All values are in 1/72nds of an inch.
Parameters:
imageableX - The X coordinate of the upper left hand corner of the imageable area, in 1/72nds of an inch.
imageableY - The Y coordinate of the upper left hand corner of the imageable area, in 1/72nds of an inch.
imageableWidth - The width of the imageable area of the paper, in 1/72nds of an inch.
imageableHeight - The heigth of the imageable area of the paper, in 1/72nds of an inch.

setSize

public void setSize(double width,
                    double height)
This method sets the size of the paper to the specified width and height, which are specified in 1/72nds of an inch.
Parameters:
width - The width of the paper in 1/72nds of an inch.
height - The height of the paper in 1/72nds of an inch.

Paper.java -- Information about a paper type. Copyright (C) 1999, 2006 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.