< prev index next >
src/java.desktop/share/classes/sun/applet/AppletEventMulticaster.java
Print this page
@@ -34,11 +34,16 @@
* AppletEventMulticaster class. This class manages an immutable
* structure consisting of a chain of AppletListeners and is
* responsible for dispatching events to them.
*
* @author Sunita Mani
+ *
+ * @deprecated The Applet API is deprecated. See the
+ * <a href="../../java/applet/package-summary.html"> java.applet package
+ * documentation</a> for further information.
*/
+@Deprecated(since = "9")
public class AppletEventMulticaster implements AppletListener {
private final AppletListener a, b;
public AppletEventMulticaster(AppletListener a, AppletListener b) {
< prev index next >