< prev index next >

modules/web/src/main/java/javafx/scene/web/WebEngine.java

Print this page

        

@@ -23,28 +23,21 @@
  * questions.
  */
 
 package 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.scene.web.Debugger;
 import com.sun.javafx.scene.web.Printable;
-import com.sun.javafx.sg.prism.NGNode;
 import com.sun.javafx.tk.TKPulseListener;
 import com.sun.javafx.tk.Toolkit;
 import com.sun.javafx.webkit.*;
 import com.sun.javafx.webkit.prism.PrismGraphicsManager;
 import com.sun.javafx.webkit.prism.PrismInvoker;
 import com.sun.javafx.webkit.prism.theme.PrismRenderer;
 import com.sun.javafx.webkit.theme.RenderThemeImpl;
 import com.sun.javafx.webkit.theme.Renderer;
-import com.sun.prism.Graphics;
 import com.sun.webkit.*;
-import com.sun.webkit.graphics.WCGraphicsContext;
 import com.sun.webkit.graphics.WCGraphicsManager;
 import com.sun.webkit.network.URLs;
 import com.sun.webkit.network.Util;
 import javafx.animation.AnimationTimer;
 import javafx.beans.InvalidationListener;

@@ -1474,28 +1467,23 @@
             return "document";
         }
     }
 
 
-    /**
+    /*
      * Returns the debugger associated with this web engine.
      * The debugger is an object that can be used to debug
      * the web page currently loaded into the web engine.
      * <p>
      * All methods of the debugger must be called on
      * the JavaFX Application Thread.
      * The message callback object registered with the debugger
      * is always called on the JavaFX Application Thread.
      * @return the debugger associated with this web engine.
      *         The return value cannot be {@code null}.
-     * @treatAsPrivate This is an internal API that can be changed or
-     *                 removed in the future.
-     * @deprecated This is an internal API that can be changed or
-     *             removed in the future.
      */
-    @Deprecated
-    public Debugger impl_getDebugger() {
+    Debugger getDebugger() {
         return debugger;
     }
 
     /**
      * The debugger implementation.
< prev index next >