Skip to content

Commit cc8d520

Browse files
author
Pavel Rappo
committedAug 18, 2020
8251550: Clean up jdk.javadoc and the related parts of jdk.compiler
Reviewed-by: jjg
1 parent 61e42ed commit cc8d520

File tree

80 files changed

+581
-632
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+581
-632
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/source/doctree/AttributeTree.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -56,13 +56,14 @@ enum ValueKind {
5656

5757
/**
5858
* Returns the kind of the attribute.
59-
* @return the kind of the attribute.
59+
* @return the kind of the attribute
6060
*/
6161
ValueKind getValueKind();
6262

6363
/**
64-
* Returns the value of the attribute, or {@code null} if the kind is EMPTY.
65-
* @return the value of the attribute.
64+
* Returns the value of the attribute, or {@code null} if the
65+
* {@linkplain #getValueKind() kind of this attribute} is {@code EMPTY}.
66+
* @return the value of the attribute
6667
*/
6768
List<? extends DocTree> getValue();
6869
}

‎src/jdk.compiler/share/classes/com/sun/source/doctree/AuthorTree.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,10 +28,11 @@
2828
import java.util.List;
2929

3030
/**
31-
* A tree node for an @author block tag.
31+
* A tree node for an {@code @author} block tag.
3232
*
33-
* <p>
34-
* &#064;author name-text.
33+
* <pre>
34+
* &#064;author name-text
35+
* </pre>
3536
*
3637
* @since 1.8
3738
*/

0 commit comments

Comments
 (0)
Please sign in to comment.