Interface Overlay
- All Known Implementing Classes:
AbstractAnimatedOverlay
,LayeredOverlay
public interface Overlay
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addComponent
(JComponent comp) Adds a component to this overlay.boolean
Returns true if the overlay is animated.void
paintOverlay
(JComponent comp, Graphics2D g, Rectangle rect) Paint the overlay for a given quality monitoring componentvoid
Removes all child components.void
removeComponent
(JComponent comp) Removes a component from this overlay.
-
Method Details
-
paintOverlay
Paint the overlay for a given quality monitoring component -
isAnimated
boolean isAnimated()Returns true if the overlay is animated. Animated components keep track of their components -
addComponent
Adds a component to this overlay. Used for animated overlay so that they know who to animate. -
removeComponent
Removes a component from this overlay. Used for animated overlay so that they know who to animate. -
removeAllComponents
void removeAllComponents()Removes all child components. Should stop any animation timers.
-