< prev index next >

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

Print this page
rev 10859 : 8195788: Remove obsolete javafx.jmx module
Reviewed-by:

*** 42,53 **** import java.util.List; import com.sun.javafx.geom.BaseBounds; import com.sun.javafx.geom.PickRay; import com.sun.javafx.geom.transform.BaseTransform; - import com.sun.javafx.jmx.MXNodeAlgorithm; - import com.sun.javafx.jmx.MXNodeAlgorithmContext; import com.sun.javafx.scene.CssFlags; import com.sun.javafx.scene.DirtyBits; import com.sun.javafx.scene.NodeHelper; import com.sun.javafx.scene.SubSceneHelper; import com.sun.javafx.scene.input.PickResultChooser; --- 42,51 ----
*** 129,143 **** public void doProcessCSS(Node node) { ((SubScene) node).doProcessCSS(); } @Override - public Object doProcessMXNode(Node node, MXNodeAlgorithm alg, MXNodeAlgorithmContext ctx) { - return ((SubScene) node).doProcessMXNode(alg, ctx); - } - - @Override public void doPickNodeLocal(Node node, PickRay localPickRay, PickResultChooser result) { ((SubScene) node).doPickNodeLocal(localPickRay, result); } --- 127,136 ----
*** 874,891 **** result.offer(this, boundsDistance, intersectPt); } } } - /* - * Note: This method MUST only be called via its accessor method. - */ - private Object doProcessMXNode(MXNodeAlgorithm alg, MXNodeAlgorithmContext ctx) { - throw new UnsupportedOperationException("Not supported yet."); - } - - private List<LightBase> lights = new ArrayList<>(); // @param light must not be null final void addLight(LightBase light) { if (!lights.contains(light)) { --- 867,876 ----
< prev index next >