On this page
Class Dimension2D
- All Implemented Interfaces:
-
Cloneable
- Direct Known Subclasses:
-
Dimension
public abstract class Dimension2D extends Object implements Cloneable
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.
- Since:
- 1.2
Constructor Summary
Modifier | Constructor | Description |
---|---|---|
protected |
This is an abstract class that cannot be instantiated directly.
|
Method Summary
Modifier and Type | Method | Description |
---|---|---|
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.
|
abstract void |
setSize |
Sets the size of this Dimension object to the specified width and height.
|
void |
setSize |
Sets the size of this Dimension2D object to match the specified size.
|
Constructor Details
Dimension2D
protected Dimension2D()
- Since:
- 1.2
- See Also:
Method Details
getWidth
public abstract double getWidth()
Dimension
in double precision.
- Returns:
-
the width of this
Dimension
. - Since:
- 1.2
getHeight
public abstract double getHeight()
Dimension
in double precision.
- Returns:
-
the height of this
Dimension
. - Since:
- 1.2
setSize
public abstract void setSize(double width, double height)
Dimension
object to the specified width and height. This method is included for completeness, to parallel the getSize
method of Component
.
- Parameters:
width
- the new width for theDimension
objectheight
- the new height for theDimension
object- Since:
- 1.2
setSize
public void setSize(Dimension2D d)
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 theDimension2D
object- Since:
- 1.2
clone
public Object clone()
- Overrides:
clone
in classObject
- Returns:
- a clone of this instance.
- Throws:
OutOfMemoryError
- if there is not enough memory.- Since:
- 1.2
- See Also:
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/awt/geom/Dimension2D.html