< prev index next >

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

Print this page

        

@@ -307,12 +307,12 @@
         }
         return shape;
     }
 
     @Override
-    boolean impl_startable(boolean forceSync) {
-        if (!super.impl_startable(forceSync)) {
+    boolean startable(boolean forceSync) {
+        if (!super.startable(forceSync)) {
             return false;
         }
         // check if synchronization is not forced and cached values are valid
         if (!forceSync && (cachedShape != null)) {
             return true;

@@ -331,12 +331,12 @@
                                                                                       // Color?
         && (getToValue() != null)); // toValue defined?
     }
 
     @Override
-    void impl_sync(boolean forceSync) {
-        super.impl_sync(forceSync);
+    void sync(boolean forceSync) {
+        super.sync(forceSync);
         if (forceSync || (cachedShape == null)) {
             cachedShape = getTargetShape();
             final Color _fromValue = getFromValue();
             start = (_fromValue != null) ? _fromValue : (Color) cachedShape
                     .getStroke();
< prev index next >