< prev index next >

modules/graphics/src/main/java/javafx/animation/Timeline.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -170,30 +170,30 @@
         super(timer);
         clipCore = new TimelineClipCore(this);
     }
 
     @Override
-    void impl_playTo(long currentTicks, long cycleTicks) {
+    void doPlayTo(long currentTicks, long cycleTicks) {
         clipCore.playTo(currentTicks);
     }
 
     @Override
-    void impl_jumpTo(long currentTicks, long cycleTicks, boolean forceJump) {
-        impl_sync(false);
-        impl_setCurrentTicks(currentTicks);
+    void doJumpTo(long currentTicks, long cycleTicks, boolean forceJump) {
+        sync(false);
+        setCurrentTicks(currentTicks);
         clipCore.jumpTo(currentTicks, forceJump);
     }
 
     @Override
-    void impl_setCurrentRate(double currentRate) {
-        super.impl_setCurrentRate(currentRate);
+    void setCurrentRate(double currentRate) {
+        super.setCurrentRate(currentRate);
         clipCore.notifyCurrentRateChanged();
     }
 
     @Override
-    void impl_start(boolean forceSync) {
-        super.impl_start(forceSync);
+    void doStart(boolean forceSync) {
+        super.doStart(forceSync);
         clipCore.start(forceSync);
     }
 
     /**
      * {@inheritDoc}
< prev index next >