Interface AnimationExtension
-
- All Known Implementing Classes:
BirthdayExtension
,ChristmasExtension
,NoExtension
public interface AnimationExtension
Graphical animation extension. Copied from Icedtea-Web.- Since:
- 14578
- See Also:
- Initial commit
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
adjustForSize(int w, int h, int x, int y)
Adjusts for size.void
animate()
Performs the optional animation.void
paint(java.awt.Graphics g)
Paints static contents.
-
-
-
Method Detail
-
adjustForSize
void adjustForSize(int w, int h, int x, int y)
Adjusts for size.- Parameters:
w
- widthh
- heightx
- x origin of view areay
- y origin of view area
-
paint
void paint(java.awt.Graphics g)
Paints static contents.- Parameters:
g
- graphics object
-
animate
void animate()
Performs the optional animation.
-
-