MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / repaintAnimations

Method repaintAnimations

CodenameOne/src/com/codename1/ui/Form.java:2253–2269  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 2

animateMethod · 0.95
edtLoopImplMethod · 0.95

Calls 4

resetRippleComponentMethod · 0.95
loopAnimationsMethod · 0.95
updateAnimationsMethod · 0.80
repaintMethod · 0.65

Tested by

no test coverage detected