/*     */ public void stop(Object paramObject) /*     */ {
   /*  75 */ Animation localAnimation = (Animation) this.activeTimeLines.remove(paramObject);
   /*  76 */ if (localAnimation != null) localAnimation.stop();
   /*  77 */ if (this.activeTimeLines.isEmpty()) stop();
   /*     */ }
Esempio n. 2
0
 private void stop(Animation animation) {
   animation.jumpTo(Duration.ZERO);
   animation.stop();
 }