jdk/src/java.desktop/share/classes/sun/applet/AppletPanel.java
changeset 43078 1d242b27f9e2
parent 42198 6ff366cc096b
equal deleted inserted replaced
43077:785bbcd9812a 43078:1d242b27f9e2
    50  * Applet panel class. The panel manages and manipulates the
    50  * Applet panel class. The panel manages and manipulates the
    51  * applet as it is being loaded. It forks a separate thread in a new
    51  * applet as it is being loaded. It forks a separate thread in a new
    52  * thread group to call the applet's init(), start(), stop(), and
    52  * thread group to call the applet's init(), start(), stop(), and
    53  * destroy() methods.
    53  * destroy() methods.
    54  *
    54  *
       
    55  * @deprecated The Applet API is deprecated. See the
       
    56  * <a href="../../java/applet/package-summary.html"> java.applet package
       
    57  * documentation</a> for further information.
       
    58  *
    55  * @author      Arthur van Hoff
    59  * @author      Arthur van Hoff
    56  */
    60  */
    57 @SuppressWarnings({"serial", "deprecation"}) // JDK implementation class
    61 @SuppressWarnings({"serial"}) // JDK implementation class
       
    62 @Deprecated(since = "9")
    58 public
    63 public
    59 abstract class AppletPanel extends Panel implements AppletStub, Runnable {
    64 abstract class AppletPanel extends Panel implements AppletStub, Runnable {
    60 
    65 
    61     /**
    66     /**
    62      * The applet (if loaded).
    67      * The applet (if loaded).