| |
|
| java.lang.Object java.awt.geom.Dimension2D
All known Subclasses: java.awt.Dimension,
Dimension2D | abstract public class Dimension2D implements Cloneable(Code) | | The Dimension2D class is to encapsulate a width
and a height dimension.
This class is only the abstract superclass for all objects that
store a 2D dimension.
The actual storage representation of the sizes is left to
the subclass.
version: 1.21, 05/05/07 author: Jim Graham since: 1.2 |
Constructor Summary | |
protected | Dimension2D() This is an abstract class that cannot be instantiated directly. |
Method Summary | |
public Object | clone() Creates a new object of the same class as this object. | abstract public double | getHeight() Returns the height of this Dimension in double
precision. | abstract public double | getWidth() Returns the width of this Dimension in double
precision. | abstract public void | setSize(double width, double height) Sets the size of this Dimension object to the
specified width and height. | public void | setSize(Dimension2D d) Sets the size of this Dimension2D object to
match the specified size. |
Dimension2D | protected Dimension2D()(Code) | | This is an abstract class that cannot be instantiated directly.
Type-specific implementation subclasses are available for
instantiation and provide a number of formats for storing
the information necessary to satisfy the various accessor
methods below.
See Also: java.awt.Dimension since: 1.2 |
getHeight | abstract public double getHeight()(Code) | | Returns the height of this Dimension in double
precision.
the height of this Dimension . since: 1.2 |
getWidth | abstract public double getWidth()(Code) | | Returns the width of this Dimension in double
precision.
the width of this Dimension . since: 1.2 |
setSize | abstract public void setSize(double width, double height)(Code) | | Sets the size of this Dimension object to the
specified width and height.
This method is included for completeness, to parallel the
java.awt.Component.getSize getSize method of
java.awt.Component .
Parameters: width - the new width for the Dimension object Parameters: height - the new height for the Dimension object since: 1.2 |
setSize | public void setSize(Dimension2D d)(Code) | | Sets the size of this Dimension2D object to
match the specified size.
This method is included for completeness, to parallel the
getSize method of Component .
Parameters: d - the new size for the Dimension2D object since: 1.2 |
|
|
|