Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR-209 (Final Approval Ballot)

java.awt
Class Dimension

java.lang.Object
  extended byjava.awt.geom.Dimension2D
      extended byjava.awt.Dimension
All Implemented Interfaces:
java.lang.Cloneable, java.io.Serializable

public class Dimension
extends Dimension2D
implements java.io.Serializable, java.lang.Cloneable

The Dimension class encapsulates the width and height of a component (in integer precision) in a single object. The class is associated with certain properties of components. Several methods defined by the Component class and the LayoutManager interface return a Dimension object.

Normally the values of width and height are non-negative integers. The constructors that allow you to create a dimension do not prevent you from setting a negative value for these properties. If the value of width or height is negative, the behavior of some methods defined by other objects is undefined.

Since:
JDK1.0
See Also:
Component, LayoutManager, Serialized Form

Field Summary
 int height
          The height dimension; negative values can be used.
 int width
          The width dimension; negative values can be used.
 
Constructor Summary
Dimension()
          Creates an instance of Dimension with a width of zero and a height of zero.
Dimension(Dimension d)
          Creates an instance of Dimension whose width and height are the same as for the specified dimension.
Dimension(int width, int height)
          Constructs a Dimension and initializes it to the specified width and specified height.
 
Method Summary
 java.lang.Object clone()
          Creates a new object of the same class as this object.
 boolean equals(java.lang.Object obj)
          Checks whether two dimension objects have equal values.
 double getHeight()
          Returns the height of this Dimension in double precision.
 Dimension getSize()
          Gets the size of this Dimension object.
 double getWidth()
          Returns the width of this Dimension in double precision.
 int hashCode()
          Returns the hash code for this Dimension.
 void setSize(Dimension d)
          Sets the size of this Dimension object to the specified size.
 void setSize(double width, double height)
          Sets the size of this Dimension object to the specified width and height.
 void setSize(int width, int height)
          Sets the size of this Dimension object to the specified width and height.
 java.lang.String toString()
          Returns a string representation of the values of this Dimension object's height and width fields.
 
Methods inherited from class java.awt.geom.Dimension2D
setSize
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

width

public int width
The width dimension; negative values can be used.

See Also:
getSize(), setSize(double, double)

height

public int height
The height dimension; negative values can be used.

See Also:
getSize(), setSize(double, double)
Constructor Detail

Dimension

public Dimension()
Creates an instance of Dimension with a width of zero and a height of zero.


Dimension

public Dimension(Dimension d)
Creates an instance of Dimension whose width and height are the same as for the specified dimension.

Parameters:
d - the specified dimension for the width and height values

Dimension

public Dimension(int width,
                 int height)
Constructs a Dimension and initializes it to the specified width and specified height.

Parameters:
width - the specified width
height - the specified height
Method Detail

getWidth

public double getWidth()
Description copied from class: Dimension2D
Returns the width of this Dimension in double precision.

Specified by:
getWidth in class Dimension2D
Returns:
the width of this Dimension.

getHeight

public double getHeight()
Description copied from class: Dimension2D
Returns the height of this Dimension in double precision.

Specified by:
getHeight in class Dimension2D
Returns:
the height of this Dimension.

setSize

public void setSize(double width,
                    double height)
Description copied from class: Dimension2D
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.

Specified by:
setSize in class Dimension2D
Parameters:
width - the new width for the Dimension object
height - the new height for the Dimension object

getSize

public Dimension getSize()
Gets the size of this Dimension object. This method is included for completeness, to parallel the getSize method defined by Component.

Returns:
the size of this dimension, a new instance of Dimension with the same width and height
Since:
JDK1.1
See Also:
setSize(double, double), Component.getSize()

setSize

public void setSize(Dimension d)
Sets the size of this Dimension object to the specified size. This method is included for completeness, to parallel the setSize method defined by Component.

Parameters:
d - the new size for this Dimension object
Since:
JDK1.1
See Also:
getSize(), Component.setSize(int, int)

setSize

public void setSize(int width,
                    int height)
Sets the size of this Dimension object to the specified width and height. This method is included for completeness, to parallel the setSize method defined by Component.

Parameters:
width - the new width for this Dimension object
height - the new height for this Dimension object
Since:
JDK1.1
See Also:
getSize(), Component.setSize(int, int)

equals

public boolean equals(java.lang.Object obj)
Checks whether two dimension objects have equal values.


hashCode

public int hashCode()
Returns the hash code for this Dimension.

Returns:
a hash code for this Dimension

toString

public java.lang.String toString()
Returns a string representation of the values of this Dimension object's height and width fields. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not be null.

Returns:
a string representation of this Dimension object

clone

public java.lang.Object clone()
Creates a new object of the same class as this object.

Overrides:
clone in class Dimension2D
Returns:
a clone of this instance.
Throws:
java.lang.OutOfMemoryError - if there is not enough memory.
Since:
1.2
See Also:
Cloneable

JSR-209 (Final Approval Ballot)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 209 specification.