Package docking.util
Interface AnimationPainter
-
public interface AnimationPainterAn interface used withAnimationUtilsto allow clients to use the timing framework while performing their own painting.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpaint(GGlassPane glassPane, java.awt.Graphics graphics, double percentComplete)Called back each time the animation system generates a timing event.
-
-
-
Method Detail
-
paint
void paint(GGlassPane glassPane, java.awt.Graphics graphics, double percentComplete)
Called back each time the animation system generates a timing event.- Parameters:
glassPane- the glass pane upon which painting takes placegraphics- the graphics used to paintpercentComplete- a value from 0 to 1, 1 being fully complete.
-
-