public interface Visualizable
extends java.lang.Cloneable, java.io.Serializable
| 修飾子とタイプ | メソッドと説明 |
|---|---|
java.lang.Object |
clone()
Returns a clone of this visual object.
|
java.awt.Dimension |
getSize()
Returns the size of this visual object.
|
boolean |
isResizable()
Checks if the visual object is resizable.
|
void |
paint(java.awt.Graphics g,
java.awt.Point p)
Paints the visual object at the specified location.
|
void |
setSize(java.awt.Dimension d)
Resizes the visual object to the specified dimension.
|
java.awt.Dimension getSize()
void setSize(java.awt.Dimension d)
d - the visual object dimension.boolean isResizable()
void paint(java.awt.Graphics g,
java.awt.Point p)
g - the specified graphics.p - the location in the graphics to be painted.java.lang.Object clone()