--- old/src/share/classes/java/security/UnresolvedPermission.java 2013-06-28 10:31:57.442376685 -0700 +++ new/src/share/classes/java/security/UnresolvedPermission.java 2013-06-28 10:31:57.282376687 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2013, 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 @@ -72,11 +72,11 @@ * the class provides a zero, one, and/or two-argument constructor. * The zero-argument constructor would be used to instantiate * a permission without a name and without actions. - * A one-arg constructor is assumed to take a String + * A one-arg constructor is assumed to take a {@code String} * name as input, and a two-arg constructor is assumed to take a - * String name and String actions + * {@code String} name and {@code String} actions * as input. UnresolvedPermission may invoke a - * constructor with a null name and/or actions. + * constructor with a {@code null} name and/or actions. * If an appropriate permission constructor is not available, * the UnresolvedPermission is ignored and the relevant permission * will not be granted to executing code. @@ -84,9 +84,9 @@ *

The newly created permission object replaces the * UnresolvedPermission, which is removed. * - *

Note that the getName method for an - * UnresolvedPermission returns the - * type (class name) for the underlying permission + *

Note that the {@code getName} method for an + * {@code UnresolvedPermission} returns the + * {@code type} (class name) for the underlying permission * that has not been resolved. * * @see java.security.Permission @@ -440,7 +440,7 @@ * has not been resolved. * * @return the target name of the underlying permission that - * has not been resolved, or null, + * has not been resolved, or {@code null}, * if there is no targe name * * @since 1.5 @@ -454,7 +454,7 @@ * has not been resolved. * * @return the actions for the underlying permission that - * has not been resolved, or null + * has not been resolved, or {@code null} * if there are no actions * * @since 1.5 @@ -503,16 +503,16 @@ /** * Writes this object out to a stream (i.e., serializes it). * - * @serialData An initial String denoting the - * type is followed by a String denoting the - * name is followed by a String denoting the - * actions is followed by an int indicating the + * @serialData An initial {@code String} denoting the + * {@code type} is followed by a {@code String} denoting the + * {@code name} is followed by a {@code String} denoting the + * {@code actions} is followed by an {@code int} indicating the * number of certificates to follow * (a value of "zero" denotes that there are no certificates associated * with this object). - * Each certificate is written out starting with a String + * Each certificate is written out starting with a {@code String} * denoting the certificate type, followed by an - * int specifying the length of the certificate encoding, + * {@code int} specifying the length of the certificate encoding, * followed by the certificate encoding itself which is written out as an * array of bytes. */