All Packages Class Hierarchy This Package Previous Next Index
Interface COM.taligent.widget.Paintable
- public interface Paintable
A paintable interface. If a class implements Paintable it
guarantees that it is a paintable object and has the
functions necessary to paint it.
- Version:
- 2.0 (JDK 1.1)
- Author:
- Andy Clark, Taligent Inc.
-
getSize()
- Returns the width and height needed to draw this object.
-
paint(Graphics)
- Paint the object in the given graphics context.
paint
public abstract void paint(Graphics g)
- Paint the object in the given graphics context.
- Parameters:
- g - The graphics context.
getSize
public abstract Dimension getSize()
- Returns the width and height needed to draw this object.
All Packages Class Hierarchy This Package Previous Next Index