Class marimba.gui.BackingStore
All Packages Class Hierarchy This Package Previous Next Index
Class marimba.gui.BackingStore
java.lang.Object
|
+----marimba.gui.BackingStore
- public final class BackingStore
- extends Object
A Backing store for AWT components.
- Version:
- 1.11, 11/09/96
- Author:
- Arthur van Hoff
-
BackingStore()
-
-
flush()
- Flush the backing store.
-
getGraphics(Component)
- Get the offscreen image.
-
paint(Graphics)
- Paint the backing store to the window.
-
toString()
- Debugging.
BackingStore
public BackingStore()
getGraphics
public synchronized Graphics getGraphics(Component owner)
- Get the offscreen image. The component is the owner of
in which the offscreen buffer will be drawn. The bounding
rectangle indicates the area in which will be drawn. The
cliprect will be set to the indicated area.
paint
public synchronized void paint(Graphics g)
- Paint the backing store to the window. Note that the caller must
synchronize on the backingstore if multiple threads use the
same backing store to paint.
toString
public String toString()
- Debugging.
- Overrides:
- toString in class Object
flush
public synchronized void flush()
- Flush the backing store.
All Packages Class Hierarchy This Package Previous Next Index