< prev index next >

modules/javafx.web/src/main/java/com/sun/javafx/scene/web/Printable.java

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

*** 25,36 **** package com.sun.javafx.scene.web; import com.sun.javafx.geom.BaseBounds; import com.sun.javafx.geom.transform.BaseTransform; - import com.sun.javafx.jmx.MXNodeAlgorithm; - import com.sun.javafx.jmx.MXNodeAlgorithmContext; import com.sun.javafx.sg.prism.NGNode; import com.sun.prism.Graphics; import com.sun.webkit.WebPage; import com.sun.webkit.graphics.WCGraphicsContext; import com.sun.webkit.graphics.WCGraphicsManager; --- 25,34 ----
*** 52,66 **** @Override public boolean doComputeContains(Node node, double localX, double localY) { return ((Printable) node).doComputeContains(localX, localY); } - - @Override - public Object doProcessMXNode(Node node, MXNodeAlgorithm alg, MXNodeAlgorithmContext ctx) { - return ((Printable) node).doProcessMXNode(alg, ctx); - } }); } private final WebPage page; private final NGNode peer; --- 50,59 ----
*** 76,92 **** } /* * Note: This method MUST only be called via its accessor method. */ - private Object doProcessMXNode(MXNodeAlgorithm alg, MXNodeAlgorithmContext ctx) { - return null; - } - - /* - * Note: This method MUST only be called via its accessor method. - */ private BaseBounds doComputeGeomBounds(BaseBounds bounds, BaseTransform tx) { return bounds; } /* --- 69,78 ----
< prev index next >