All Packages Class Hierarchy This Package Previous Next Index
Interface com.ibm.eou.toolkit.graphics.Background
- public interface Background
This interface is implemented by classes which
can render border and background graphics for
components.
-
copyright
- Ensures that the short copyright string appears
in the class file.
-
dispose()
- Release all resources used by the object.
-
getInsets()
- Return the insets which the border part (if any)
will occupy when the background is rendered.
-
render(Graphics, int, int, int, int)
- Render the border and background onto the
given graphics, within a bounding rectangle.
copyright
public static final String copyright
- Ensures that the short copyright string appears
in the class file.
render
public abstract void render(Graphics g,
int x,
int y,
int width,
int height)
- Render the border and background onto the
given graphics, within a bounding rectangle.
Any foreground should then be drawn
within the bounding rectangle
diminished by the border insets amount.
- See Also:
- getInsets
getInsets
public abstract Insets getInsets()
- Return the insets which the border part (if any)
will occupy when the background is rendered.
dispose
public abstract void dispose()
- Release all resources used by the object.
All Packages Class Hierarchy This Package Previous Next Index