|
Java Platform 1.2 Beta 4 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.geom.Dimension2D
This class is only the abstract superclass for all objects which store a 2D dimension. The actual storage representation of the sizes is left to the subclass.
Constructor Summary | |
Dimension2D()
This is an abstract class that cannot be instantiated directly. |
Method Summary | |
Object | clone()
Creates a new object of the same class as this object. |
abstract double | getHeight()
Returns the height of this dimension in double precision. |
abstract double | getWidth()
Returns the width of this dimension in double precision. |
void | setSize(Dimension2D d)
Set the size of this Dimension object to match the specified size. |
abstract void | setSize(double width,
double height)
Set the size of this Dimension object to the specified width and height. |
Methods inherited from class java.lang.Object | |
equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait |
Constructor Detail |
protected Dimension2D()
Dimension
Method Detail |
public abstract double getWidth()
public abstract double getHeight()
public abstract void setSize(double width, double height)
width
- the new width for the Dimension object
height
- the new height for the Dimension objectpublic void setSize(Dimension2D d)
d
- the new size for the Dimension objectpublic Object clone()
Cloneable
|
Java Platform 1.2 Beta 4 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |