8276681: Additional malformed Javadoc inline tags in JDK source

Reviewed-by: lancea
This commit is contained in:
Tim Prinzing 2021-12-02 21:22:43 +00:00 committed by Lance Andersen
parent b310f301ef
commit b8ac0d20ce
9 changed files with 11 additions and 11 deletions
src
java.desktop/windows/classes/com/sun/java/swing/plaf/windows
java.management/share/classes/javax/management/modelmbean
java.net.http/share/classes/jdk/internal/net/http
java.rmi/share/classes/java/rmi/server
java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/signature
jdk.compiler/share/classes/com/sun/source/util
test/jdk/java
awt
Desktop/DesktopEventsExceptions
regtesthelpers/process
net/httpclient/reactivestreams-tck/org/reactivestreams/tck/flow/support

@ -59,7 +59,7 @@ import sun.awt.AppContext;
* <li> It tracks the animation state for every UI component involved in the
* animation and paints {@code Skin} in new {@code State} over the
* {@code Skin} in last {@code State} using
* {@code AlphaComposite.SrcOver.derive(alpha)} where {code alpha}
* {@code AlphaComposite.SrcOver.derive(alpha)} where {@code alpha}
* depends on the state of animation
* </ul>
*

@ -192,7 +192,7 @@ public class RequiredModelMBean
*
* @exception MBeanException Wraps a distributed communication Exception.
* @exception RuntimeOperationsException Wraps an
* {link java.lang.IllegalArgumentException}:
* {@link java.lang.IllegalArgumentException}:
* The MBeanInfo passed in parameter is null.
*
**/

@ -1086,7 +1086,7 @@ public class ResponseSubscribers {
* Invokes bs::getBody using the provided executor.
* If invoking bs::getBody requires an executor, and the given executor
* is a {@link HttpClientImpl.DelegatingExecutor}, then the executor's
* delegate is used. If an error occurs anywhere then the given {code cf}
* delegate is used. If an error occurs anywhere then the given {@code cf}
* is completed exceptionally (this method does not throw).
* @param e The executor that should be used to call bs::getBody
* @param bs The BodySubscriber

@ -251,7 +251,7 @@ public abstract class RemoteObject implements Remote, java.io.Serializable {
* written by {@link java.io.ObjectOutput#writeInt(int)}
*
* <li>the data written as a result of calling
* {link java.rmi.server.ObjID#write(java.io.ObjectOutput)}
* {@link java.rmi.server.ObjID#write(java.io.ObjectOutput)}
* on the <code>ObjID</code> instance contained in the reference
*
* <li>the boolean value <code>false</code>,
@ -275,7 +275,7 @@ public abstract class RemoteObject implements Remote, java.io.Serializable {
* written by {@link java.io.ObjectOutput#writeInt(int)}
*
* <li>the data written as a result of calling
* {link java.rmi.server.ObjID#write(java.io.ObjectOutput)}
* {@link java.rmi.server.ObjID#write(java.io.ObjectOutput)}
* on the <code>ObjID</code> instance contained in the reference
*
* <li>the boolean value <code>false</code>,
@ -304,7 +304,7 @@ public abstract class RemoteObject implements Remote, java.io.Serializable {
* <code>writeObject</code> on the stream instance
*
* <li>the data written as a result of calling
* {link java.rmi.server.ObjID#write(java.io.ObjectOutput)}
* {@link java.rmi.server.ObjID#write(java.io.ObjectOutput)}
* on the <code>ObjID</code> instance contained in the reference
*
* <li>the boolean value <code>false</code>,

@ -88,7 +88,7 @@ public class SignatureProperties extends SignatureElementProxy {
/**
* Return the <i>i</i><sup>th</sup> SignatureProperty. Valid {@code i}
* values are 0 to {@code {link@ getSize}-1}.
* values are 0 to {@code {@link getSize}-1}.
*
* @param i Index of the requested {@link SignatureProperty}
* @return the <i>i</i><sup>th</sup> SignatureProperty

@ -72,7 +72,7 @@ public abstract class Trees {
}
/**
* Returns a {code Trees} object for a given {@code ProcessingEnvironment}.
* Returns a {@code Trees} object for a given {@code ProcessingEnvironment}.
* @param env the processing environment for which to get the {@code Trees} object
* @throws IllegalArgumentException if the env does not support the Tree API.
* @return the {@code Trees} object

@ -45,7 +45,7 @@ import java.util.List;
* @test
* @bug 8203224
* @summary tests that the correct exceptions are thrown by the events classes
* in {code java.awt.desktop} package
* in {@code java.awt.desktop} package
* @run main/othervm DesktopEventsExceptions
* @run main/othervm -Djava.awt.headless=true DesktopEventsExceptions
*/

@ -76,7 +76,7 @@ public class ProcessCommunicator {
}
/**
* Executes child {code Process}
* Executes child {@code Process}
*
* @param classToExecute class to be executed as a child java process
* @param args args to be passed in to the child process

@ -126,7 +126,7 @@ public interface PublisherVerificationRules {
* <p>
* The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} is less than 10.
* <p>
* Note that this test is probabilistic, that is, may not capture any concurrent invocation in a {code Publisher} implementation.
* Note that this test is probabilistic, that is, may not capture any concurrent invocation in a {@code Publisher} implementation.
* Note also that this test is sensitive to cases when a {@code request()} call in {@code onSubscribe()} triggers an asynchronous
* call to the other {@code onXXX} methods. In contrast, the test allows synchronous call chain of
* {@code onSubscribe -> request -> onNext}.