< prev index next >

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

Print this page

        

@@ -572,11 +572,11 @@
         // If styleMap is null, then StyleManager has blown it away and we need to reapply CSS.
         //
         final StyleMap styleMap = getStyleMap(node);
         if (styleMap == null) {
             cacheContainer = null;
-            node.impl_reapplyCSS();
+            node.reapplyCSS();
             return;
         }
 
         // if the style-map is empty, then we are only looking for inherited styles.
         final boolean inheritOnly = styleMap.isEmpty();

@@ -589,11 +589,11 @@
 
         if (sharedCache == null) {
             // Shared cache was blown away by StyleManager.
             // Therefore, this CssStyleHelper is no good.
             cacheContainer = null;
-            node.impl_reapplyCSS();
+            node.reapplyCSS();
             return;
 
         }
 
         final Set<PseudoClass>[] transitionStates = getTransitionStates(node);

@@ -1995,11 +1995,11 @@
         return null;
     }
 
 
     /**
-     * Called from Node impl_getMatchingStyles
+     * Called from Node NodeHelper.getMatchingStyles
      * @param styleable
      * @param styleableProperty
      * @return
      */
     static List<Style> getMatchingStyles(final Styleable styleable, final CssMetaData styleableProperty) {
< prev index next >