Class Dimension2D

java.lang.Object
java.awt.geom.Dimension2D
All Implemented Interfaces:
Cloneable
Direct Known Subclasses:
Dimension

public abstract class Dimension2D extends Object implements Cloneable
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.

Since:
1.2
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    This is an abstract class that cannot be instantiated directly.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a new object of the same class as this object.
    abstract double
    Returns the height of this Dimension in double precision.
    abstract double
    Returns the width of this Dimension in double precision.
    abstract void
    setSize(double width, double height)
    Sets the size of this Dimension object to the specified width and height.
    void
    Sets the size of this Dimension2D object to match the specified size.

    Methods declared in class Object

    equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    Modifier and Type
    Method
    Description
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finalization is deprecated and subject to removal in a future release.
    final Class<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    Returns a string representation of the object.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(long timeoutMillis)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
    final void
    wait(long timeoutMillis, int nanos)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
  • Constructor Details

    • 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:
  • Method Details

    • getWidth

      public abstract double getWidth()
      Returns the width of this Dimension in double precision.
      Returns:
      the width of this Dimension.
      Since:
      1.2
    • getHeight

      public abstract double getHeight()
      Returns the height of this Dimension 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 this 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 the Dimension object
      height - the new height for the Dimension object
      Since:
      1.2
    • setSize

      public void setSize(Dimension2D d)
      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
    • clone

      public Object clone()
      Creates a new object of the same class as this object.
      Overrides:
      clone in class Object
      Returns:
      a clone of this instance.
      Throws:
      OutOfMemoryError - if there is not enough memory.
      Since:
      1.2
      See Also: