- java.lang.Object
-
- java.awt.geom.Dimension2D
-
- All Implemented Interfaces:
- Cloneable
- Direct Known Subclasses:
- Dimension
public abstract class Dimension2D extends Object implements Cloneable
TheDimension2D
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
Constructors Modifier Constructor and Description protected
Dimension2D()
This is an abstract class that cannot be instantiated directly.
-
Method Summary
Methods Modifier and Type Method and Description Object
clone()
Creates a new object of the same class as this object.abstract double
getHeight()
Returns the height of thisDimension
in double precision.abstract double
getWidth()
Returns the width of thisDimension
in double precision.void
setSize(Dimension2D d)
Sets the size of thisDimension2D
object to match the specified size.abstract void
setSize(double width, double height)
Sets the size of thisDimension
object to the specified width and height.
-
-
-
Constructor Detail
-
Dimension2D
protected 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
-
getWidth
public abstract double getWidth()
Returns the width of thisDimension
in double precision.- Returns:
- the width of this
Dimension
. - Since:
- 1.2
-
getHeight
public abstract double getHeight()
Returns the height of thisDimension
in double precision.- Returns:
- the height of this
Dimension
. - Since:
- 1.2
-
setSize
public abstract void setSize(double width, double height)
Sets the size of thisDimension
object to the specified width and height. This method is included for completeness, to parallel thegetSize
method ofComponent
.- Parameters:
width
- the new width for theDimension
objectheight
- the new height for theDimension
object- Since:
- 1.2
-
setSize
public void setSize(Dimension2D d)
Sets the size of thisDimension2D
object to match the specified size. This method is included for completeness, to parallel thegetSize
method ofComponent
.- Parameters:
d
- the new size for theDimension2D
object- Since:
- 1.2
-
clone
public Object clone()
Creates a new object of the same class as this object.- Overrides:
clone
in classObject
- Returns:
- a clone of this instance.
- Throws:
OutOfMemoryError
- if there is not enough memory.- Since:
- 1.2
- See Also:
Cloneable
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/awt/geom/Dimension2D.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.