--- old/src/java.desktop/share/classes/sun/applet/AppletPanel.java 2016-11-17 20:02:20.000000000 +0300 +++ new/src/java.desktop/share/classes/sun/applet/AppletPanel.java 2016-11-17 20:02:20.000000000 +0300 @@ -52,9 +52,14 @@ * thread group to call the applet's init(), start(), stop(), and * destroy() methods. * + * @deprecated The Applet API is deprecated. See the + * java.applet package + * documentation for further information. + * * @author Arthur van Hoff */ -@SuppressWarnings({"serial", "deprecation"}) // JDK implementation class +@SuppressWarnings({"serial"}) // JDK implementation class +@Deprecated(since = "9") public abstract class AppletPanel extends Panel implements AppletStub, Runnable {