Methods Summary |
---|
public java.lang.Object | clone()
try {
return super.clone();
} catch (CloneNotSupportedException e) {
throw new InternalError();
}
|
public abstract double | getHeight()Gets the height.
|
public abstract double | getWidth()Gets the width.
|
public abstract void | setSize(double width, double height)Sets the width and height.
|
public void | setSize(java.awt.geom.Dimension2D d)Sets the width and height based on the data of another Dimension2D
object.
setSize(d.getWidth(), d.getHeight());
|