()
| 2251 | /// Makes sure all animations are repainted so they would be rendered in every |
| 2252 | /// frame |
| 2253 | void repaintAnimations() { |
| 2254 | if (rippleComponent != null) { |
| 2255 | rippleComponent.repaint(); |
| 2256 | if (rippleMotion == null) { |
| 2257 | resetRippleComponent(); |
| 2258 | } |
| 2259 | } |
| 2260 | if (animatableComponents != null) { |
| 2261 | loopAnimations(animatableComponents, null); |
| 2262 | } |
| 2263 | if (internalAnimatableComponents != null) { |
| 2264 | loopAnimations(internalAnimatableComponents, animatableComponents); |
| 2265 | } |
| 2266 | if (animMananger != null) { |
| 2267 | animMananger.updateAnimations(); |
| 2268 | } |
| 2269 | } |
| 2270 | |
| 2271 | /// The form itself should |
| 2272 | @Override |
no test coverage detected