public class Dimension2D

  1. Object
  2. Dimension2D
Utility class that holds a width and height that represents a dimension of a component or element

Constructors

public Dimension2D()Creates a new instance of Dimension
public Dimension2D(Dimension2D d)Creates a new instance of Dimension with a predefine dimension
public Dimension2D(double width, double height)CCreates a new instance of Dimension with width and height

Methods

public double getWidth()Returns the width of the dimension
public void setWidth(double width)Set the width of the dimension
public double getHeight()Return the height of the dimension
public void setHeight(double height)Set the height of the dimension
public String toString()Returns a string representation of the object.

Inherited methods

Constructor details

Dimension2D

public Dimension2D()
Creates a new instance of Dimension

Dimension2D

public Dimension2D(Dimension2D d)
Creates a new instance of Dimension with a predefine dimension

Parameters

d Dimension2D
Dimension to copy

Dimension2D

public Dimension2D(double width, double height)
CCreates a new instance of Dimension with width and height

Parameters

width double
the dimention width
height double
the dimention height

Method details

getWidth

public double getWidth()
Returns the width of the dimension

Returns

width of the dimension

setWidth

public void setWidth(double width)
Set the width of the dimension

Parameters

width double
the dimention width

getHeight

public double getHeight()
Return the height of the dimension

Returns

height of the dimension

setHeight

public void setHeight(double height)
Set the height of the dimension

Parameters

height double
the dimention height

toString

public String toString()
Returns a string representation of the object. In general, the toString method returns a string that “textually represents” this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method. The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@’, and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of: getClass().getName() + ‘@’ + Integer.toHexString(hashCode())