Class java.awt.Dimension
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.awt.Dimension

Object
   |
   +----java.awt.Dimension

public class Dimension
extends Object
implements Serializable
The Dimension class encapsulates the width and height of a component 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.

Version:
1.14, 07/01/98
Author:
Sami Shaio, Arthur van Hoff
Since:
JDK1.0
See Also:
Component, LayoutManager

Variable Index

 o height
The height dimension.
 o width
The width dimension.

Constructor Index

 o java.awt.Dimension()
Creates an instance of Dimension with a width of zero and a height of zero.
 o java.awt.Dimension(Dimension)
Creates an instance of Dimension whose width and height are the same as for the specified dimension.
 o java.awt.Dimension(int, int)
Constructs a Dimension and initializes it to the specified width and specified height.

Method Index

 o equals(Object)
Checks whether two dimension objects have equal values.
 o getSize()
Gets the size of this Dimension object.
 o setSize(Dimension)
Set the size of this Dimension object to the specified size.
 o setSize(int, int)
Set the size of this Dimension object to the specified width and height.
 o toString()
Returns a string that represents this Dimension object's values.

Variables

 o height
public int height
The height dimension.

 o width
public int width
The width dimension.

Constructors

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

Since:
JDK1.0
 o 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.
Since:
JDK1.0
 o 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 dimension
height - the specified height dimension
Since:
JDK1.0

Methods

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

Overrides:
equals in class Object
 o getSize
public java.awt.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, getSize
 o setSize
public void setSize(Dimension d)
Set 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, setSize
 o setSize
public void setSize(int width,
                    int height)
Set 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, setSize
 o toString
public java.lang.String toString()
Returns a string that represents this Dimension object's values.

Returns:
a string representation of this dimension, including the values of width and height.
Overrides:
toString in class Object
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index