Class ElementDimension

java.lang.Object
java.awt.geom.Dimension2D
org.jfree.chart3d.table.ElementDimension
All Implemented Interfaces:
Serializable, Cloneable

public final class ElementDimension extends Dimension2D implements Serializable
An element dimension (in fact a simple implementation of the Dimension2D interface).

NOTE: This class is serializable, but the serialization format is subject to change in future releases and should not be relied upon for persisting instances of this class.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    ElementDimension(double width, double height)
    Creates a new dimension object.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Tests this dimension for equality with an arbitrary object.
    double
    Returns the height.
    double
    Returns the width.
    void
    setSize(double width, double height)
    Sets the size.
    Returns a string representation of this dimension, primarily for debugging purposes.

    Methods inherited from class java.awt.geom.Dimension2D

    clone, setSize

    Methods inherited from class java.lang.Object

    finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ElementDimension

      public ElementDimension(double width, double height)
      Creates a new dimension object.
      Parameters:
      width - the width.
      height - the height.
  • Method Details

    • getWidth

      public double getWidth()
      Returns the width.
      Specified by:
      getWidth in class Dimension2D
      Returns:
      The width.
    • getHeight

      public double getHeight()
      Returns the height.
      Specified by:
      getHeight in class Dimension2D
      Returns:
      The height.
    • setSize

      public void setSize(double width, double height)
      Sets the size.
      Specified by:
      setSize in class Dimension2D
      Parameters:
      width - the width.
      height - the height.
    • equals

      public boolean equals(Object obj)
      Tests this dimension for equality with an arbitrary object.
      Overrides:
      equals in class Object
      Parameters:
      obj - the object (null permitted).
      Returns:
      A boolean.
    • toString

      public String toString()
      Returns a string representation of this dimension, primarily for debugging purposes.
      Overrides:
      toString in class Object
      Returns:
      A string.