diff --git a/jdk/src/share/classes/sun/applet/AppletEvent.java b/jdk/src/share/classes/sun/applet/AppletEvent.java index 6095a01e7ff..9b7e9c25526 100644 --- a/jdk/src/share/classes/sun/applet/AppletEvent.java +++ b/jdk/src/share/classes/sun/applet/AppletEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -33,7 +33,7 @@ import java.util.EventObject; * * @author Sunita Mani */ - +@SuppressWarnings("serial") // JDK-implementation class public class AppletEvent extends EventObject { private Object arg; diff --git a/jdk/src/share/classes/sun/applet/AppletIOException.java b/jdk/src/share/classes/sun/applet/AppletIOException.java index 3034678bd83..de435906e17 100644 --- a/jdk/src/share/classes/sun/applet/AppletIOException.java +++ b/jdk/src/share/classes/sun/applet/AppletIOException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -32,6 +32,7 @@ import java.io.IOException; * * @author Koji Uno */ +@SuppressWarnings("serial") // JDK implementation class public class AppletIOException extends IOException { private String key = null; diff --git a/jdk/src/share/classes/sun/applet/AppletIllegalArgumentException.java b/jdk/src/share/classes/sun/applet/AppletIllegalArgumentException.java index 3203a7cc522..292bd957053 100644 --- a/jdk/src/share/classes/sun/applet/AppletIllegalArgumentException.java +++ b/jdk/src/share/classes/sun/applet/AppletIllegalArgumentException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -30,6 +30,7 @@ package sun.applet; * * @author Arthur van Hoff */ +@SuppressWarnings("serial") // JDK implementation class public class AppletIllegalArgumentException extends IllegalArgumentException { private String key = null; diff --git a/jdk/src/share/classes/sun/applet/AppletPanel.java b/jdk/src/share/classes/sun/applet/AppletPanel.java index 52ddab9e5db..49380d35e72 100644 --- a/jdk/src/share/classes/sun/applet/AppletPanel.java +++ b/jdk/src/share/classes/sun/applet/AppletPanel.java @@ -62,6 +62,7 @@ import sun.security.util.SecurityConstants; * * @author Arthur van Hoff */ +@SuppressWarnings("serial") // JDK implementation class public abstract class AppletPanel extends Panel implements AppletStub, Runnable { diff --git a/jdk/src/share/classes/sun/applet/AppletProps.java b/jdk/src/share/classes/sun/applet/AppletProps.java index 38a76a4afc2..466aa83735b 100644 --- a/jdk/src/share/classes/sun/applet/AppletProps.java +++ b/jdk/src/share/classes/sun/applet/AppletProps.java @@ -37,6 +37,7 @@ import java.security.PrivilegedActionException; import sun.security.action.*; +@SuppressWarnings("serial") // JDK implementation class class AppletProps extends Frame { TextField proxyHost; @@ -194,7 +195,7 @@ class AppletProps extends Frame { /* 4066432 */ /* Dialog class to display property-related errors to user */ - +@SuppressWarnings("serial") // JDK implementation class class AppletPropsErrorDialog extends Dialog { public AppletPropsErrorDialog(Frame parent, String title, String message, String buttonText) { diff --git a/jdk/src/share/classes/sun/applet/AppletSecurityException.java b/jdk/src/share/classes/sun/applet/AppletSecurityException.java index 138e9279c33..2cc21af694b 100644 --- a/jdk/src/share/classes/sun/applet/AppletSecurityException.java +++ b/jdk/src/share/classes/sun/applet/AppletSecurityException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995, 1998, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -30,6 +30,7 @@ package sun.applet; * * @author Arthur van Hoff */ +@SuppressWarnings("serial") // JDK-implementation class public class AppletSecurityException extends SecurityException { private String key = null; diff --git a/jdk/src/share/classes/sun/applet/AppletViewer.java b/jdk/src/share/classes/sun/applet/AppletViewer.java index a97ac33bbe0..dd939620d5b 100644 --- a/jdk/src/share/classes/sun/applet/AppletViewer.java +++ b/jdk/src/share/classes/sun/applet/AppletViewer.java @@ -46,6 +46,7 @@ import java.lang.ref.WeakReference; /** * A frame to show the applet tag in. */ +@SuppressWarnings("serial") // JDK-implementation class class TextFrame extends Frame { /** @@ -115,6 +116,7 @@ class StdAppletViewerFactory implements AppletViewerFactory * (The document named appletviewertags.html in the JDK's docs/tooldocs directory, * once the JDK docs have been installed.) */ +@SuppressWarnings("serial") // JDK implementation class public class AppletViewer extends Frame implements AppletContext, Printable { diff --git a/jdk/src/share/classes/sun/applet/Main.java b/jdk/src/share/classes/sun/applet/Main.java index e6af9ee7f72..a95a36f2688 100644 --- a/jdk/src/share/classes/sun/applet/Main.java +++ b/jdk/src/share/classes/sun/applet/Main.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -512,6 +512,7 @@ public class Main { return amh.getMessage(key, arg0, arg1, arg2); } + @SuppressWarnings("serial") // JDK implementation class class ParseException extends RuntimeException { public ParseException(String msg) {