- java.lang.Object
- 
- java.awt.geom.Dimension2D
 
- 
- All Implemented Interfaces:
- Cloneable
 - Direct Known Subclasses:
- Dimension
 
 public abstract class Dimension2D extends Object implements Cloneable TheDimension2Dclass 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. - Since:
- 1.2
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedDimension2D()This is an abstract class that cannot be instantiated directly.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Objectclone()Creates a new object of the same class as this object.abstract doublegetHeight()Returns the height of thisDimensionin double precision.abstract doublegetWidth()Returns the width of thisDimensionin double precision.abstract voidsetSize(double width, double height)Sets the size of thisDimensionobject to the specified width and height.voidsetSize(Dimension2D d)Sets the size of thisDimension2Dobject to match the specified size.
 
- 
- 
- 
Constructor Detail- 
Dimension2Dprotected Dimension2D() 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.- Since:
- 1.2
- See Also:
- Dimension
 
 
- 
 - 
Method Detail- 
getWidthpublic abstract double getWidth() Returns the width of thisDimensionin double precision.- Returns:
- the width of this Dimension.
- Since:
- 1.2
 
 - 
getHeightpublic abstract double getHeight() Returns the height of thisDimensionin double precision.- Returns:
- the height of this Dimension.
- Since:
- 1.2
 
 - 
setSizepublic abstract void setSize(double width, double height)Sets the size of thisDimensionobject to the specified width and height. This method is included for completeness, to parallel thegetSizemethod ofComponent.- Parameters:
- width- the new width for the- Dimensionobject
- height- the new height for the- Dimensionobject
- Since:
- 1.2
 
 - 
setSizepublic void setSize(Dimension2D d) Sets the size of thisDimension2Dobject to match the specified size. This method is included for completeness, to parallel thegetSizemethod ofComponent.- Parameters:
- d- the new size for the- Dimension2Dobject
- Since:
- 1.2
 
 - 
clonepublic Object clone() Creates a new object of the same class as this object.- Overrides:
- clonein class- Object
- Returns:
- a clone of this instance.
- Throws:
- OutOfMemoryError- if there is not enough memory.
- Since:
- 1.2
- See Also:
- Cloneable
 
 
- 
 
-