Class java.awt.Dimension
All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.Dimension
java.lang.Object
|
+----java.awt.Dimension
- public class Dimension
- extends Object
A class to encapsulate a width and a height Dimension.
-
height
- The height dimension.
-
width
- The width dimension.
-
Dimension()
-
Constructs a Dimension with a 0 width and 0 height.
-
Dimension(Dimension)
-
Constructs a Dimension and initializes it to the specified value.
-
Dimension(int, int)
-
Constructs a Dimension and initializes it to the specified width and
specified height.
-
toString()
- Returns the String representation of this Dimension's values.
width
public int width
- The width dimension.
height
public int height
- The height dimension.
Dimension
public Dimension()
- Constructs a Dimension with a 0 width and 0 height.
Dimension
public Dimension(Dimension d)
- Constructs a Dimension and initializes it to the specified value.
- 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 dimension
- height - the specified height dimension
toString
public String toString()
- Returns the String representation of this Dimension's values.
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index