All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface COM.taligent.widget.Paintable

public interface 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.


Method Index

 o getSize()
Returns the width and height needed to draw this object.
 o paint(Graphics)
Paint the object in the given graphics context.

Methods

 o paint
 public abstract void paint(Graphics g)
Paint the object in the given graphics context.

Parameters:
g - The graphics context.
 o getSize
 public abstract Dimension getSize()
Returns the width and height needed to draw this object.


All Packages  Class Hierarchy  This Package  Previous  Next  Index