Package org.apache.pivot.wtk.effects
Class OverlayDecorator
- java.lang.Object
- 
- org.apache.pivot.wtk.effects.OverlayDecorator
 
- 
- 
Constructor SummaryConstructors Constructor Description OverlayDecorator()OverlayDecorator(Component overlay)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ComponentgetOverlay()java.awt.Graphics2Dprepare(Component component, java.awt.Graphics2D graphicsValue)Prepares the graphics context into which the component or prior decorator will paint.voidsetOverlay(Component overlay)voidupdate()Updates the graphics context into which the component or prior decorator was painted.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.pivot.wtk.effects.DecoratorgetBounds, getTransform
 
- 
 
- 
- 
- 
Constructor Detail- 
OverlayDecoratorpublic OverlayDecorator() 
 - 
OverlayDecoratorpublic OverlayDecorator(Component overlay) 
 
- 
 - 
Method Detail- 
getOverlaypublic Component getOverlay() 
 - 
setOverlaypublic void setOverlay(Component overlay) 
 - 
preparepublic java.awt.Graphics2D prepare(Component component, java.awt.Graphics2D graphicsValue) Description copied from interface:DecoratorPrepares the graphics context into which the component or prior decorator will paint. This method is called immediately prior toComponent.paint(Graphics2D); decorators are called in descending order.
 - 
updatepublic void update() Description copied from interface:DecoratorUpdates the graphics context into which the component or prior decorator was painted. This method is called immediately afterComponent.paint(Graphics2D); decorators are called in ascending order.This default version simply returns, without doing anything (often the appropriate thing to do). 
 
- 
 
-