< prev index next >

modules/graphics/src/main/java/javafx/scene/Scene.java

Print this page

        

@@ -570,11 +570,11 @@
         //
 //        if (sceneRoot.isDirty(com.sun.javafx.scene.DirtyBits.NODE_CSS)) {
         if (sceneRoot.cssFlag != CssFlags.CLEAN) {
             // The dirty bit isn't checked but we must ensure it is cleared.
             // The cssFlag is set to clean in either Node.processCSS or
-            // Node.impl_processCSS(boolean)
+            // NodeHelper.processCSS
             sceneRoot.clearDirty(com.sun.javafx.scene.DirtyBits.NODE_CSS);
             sceneRoot.processCSS();
         }
     }
 

@@ -952,11 +952,11 @@
                 @Override
                 protected void invalidated() {
                     final Parent _root = getRoot();
                     //TODO - use a better method to update mirroring
                     if (_root.getEffectiveNodeOrientation() == NodeOrientation.RIGHT_TO_LEFT) {
-                        _root.impl_transformsChanged();
+                        NodeHelper.transformsChanged(_root);
                     }
                     if (_root.isResizable()) {
                         resizeRootOnSceneSizeChange(get() - _root.getLayoutX() - _root.getTranslateX(), _root.getLayoutBounds().getHeight());
                     }
 

@@ -1617,11 +1617,11 @@
                 if (c.wasRemoved() == false) {
                     continue;
                 }
                 break; // no point in resetting more than once...
             }
-            getRoot().impl_reapplyCSS();
+            getRoot().reapplyCSS();
         }
     };
 
     /**
      * Gets an observable list of string URLs linking to the stylesheets to use

@@ -1673,11 +1673,11 @@
     public final ObjectProperty<String> userAgentStylesheetProperty() {
         if (userAgentStylesheet == null) {
             userAgentStylesheet = new SimpleObjectProperty<String>(Scene.this, "userAgentStylesheet", null) {
                 @Override protected void invalidated() {
                     StyleManager.getInstance().forget(Scene.this);
-                    getRoot().impl_reapplyCSS();
+                    getRoot().reapplyCSS();
                 }
             };
         }
         return userAgentStylesheet;
     }

@@ -4005,11 +4005,11 @@
             }
         }
 
         private PickResult pickNode(PickRay pickRay) {
             PickResultChooser r = new PickResultChooser();
-            Scene.this.getRoot().impl_pickNode(pickRay, r);
+            Scene.this.getRoot().pickNode(pickRay, r);
             return r.toPickResult();
         }
     }
 
     /*******************************************************************************
< prev index next >