changeset 1533:61d174a58edf

6866554: Misc. javadoc warnings Reviewed-by: alanb
author martin
date Wed, 29 Jul 2009 13:56:15 -0700
parents eb27b5587e18
children bfd7abda8f79
files src/share/classes/java/nio/channels/DatagramChannel.java src/share/classes/java/nio/channels/package-info.java src/share/classes/java/nio/file/DirectoryStream.java src/share/classes/java/nio/file/Path.java src/share/classes/java/nio/file/attribute/package-info.java src/share/classes/java/util/concurrent/ConcurrentLinkedQueue.java src/share/classes/java/util/concurrent/LinkedBlockingDeque.java src/share/classes/java/util/concurrent/LinkedBlockingQueue.java
diffstat 8 files changed, 15 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/classes/java/nio/channels/DatagramChannel.java	Wed Jul 29 11:19:14 2009 -0700
+++ b/src/share/classes/java/nio/channels/DatagramChannel.java	Wed Jul 29 13:56:15 2009 -0700
@@ -421,7 +421,7 @@
      * invocation of this method will block until the first operation is
      * complete. If this channel's socket is not bound then this method will
      * first cause the socket to be bound to an address that is assigned
-     * automatically, as if by invoking the {@link #bind bind) method with a
+     * automatically, as if by invoking the {@link #bind bind} method with a
      * parameter of {@code null}. </p>
      *
      * @param  src
--- a/src/share/classes/java/nio/channels/package-info.java	Wed Jul 29 11:19:14 2009 -0700
+++ b/src/share/classes/java/nio/channels/package-info.java	Wed Jul 29 13:56:15 2009 -0700
@@ -115,8 +115,8 @@
  *     <td>Reads, writes, maps, and manipulates files</td></tr>
  * <tr><td valign=top><tt>{@link java.nio.channels.FileLock}</tt></td>
  *     <td>A lock on a (region of a) file</td></tr>
- * <tr><td valign=top><tt>{@link java.nio.MappedByteBuffer}/{@link java.nio.MappedBigByteBuffer}&nbsp;&nbsp;</tt></td>
- *     <td>A direct byte buffer or big byte buffer mapped to a region of a&nbsp;file</td></tr>
+ * <tr><td valign=top><tt>{@link java.nio.MappedByteBuffer}&nbsp;&nbsp;</tt></td>
+ *     <td>A direct byte buffer mapped to a region of a&nbsp;file</td></tr>
  * </table></blockquote>
  *
  * <p> The {@link java.nio.channels.FileChannel} class supports the usual
--- a/src/share/classes/java/nio/file/DirectoryStream.java	Wed Jul 29 11:19:14 2009 -0700
+++ b/src/share/classes/java/nio/file/DirectoryStream.java	Wed Jul 29 13:56:15 2009 -0700
@@ -53,7 +53,7 @@
  * invoking the {@link #close close} method. Closing the directory stream
  * releases any resources associated with the stream. Once a directory stream
  * is closed, all further method invocations on the iterator throw {@link
- * java.util.concurrent.ConcurrentModificationException} with cause {@link
+ * java.util.ConcurrentModificationException} with cause {@link
  * ClosedDirectoryStreamException}.
  *
  * <p> A directory stream is not required to be <i>asynchronously closeable</i>.
--- a/src/share/classes/java/nio/file/Path.java	Wed Jul 29 11:19:14 2009 -0700
+++ b/src/share/classes/java/nio/file/Path.java	Wed Jul 29 13:56:15 2009 -0700
@@ -987,7 +987,7 @@
      * exception then it is propogated to the iterator's {@link Iterator#hasNext()
      * hasNext} or {@link Iterator#next() next} method. Where an {@code
      * IOException} is thrown, it is propogated as a {@link
-     * java.util.concurrent.ConcurrentModificationException} with the {@code
+     * java.util.ConcurrentModificationException} with the {@code
      * IOException} as the cause.
      *
      * <p> When an implementation supports operations on entries in the
--- a/src/share/classes/java/nio/file/attribute/package-info.java	Wed Jul 29 11:19:14 2009 -0700
+++ b/src/share/classes/java/nio/file/attribute/package-info.java	Wed Jul 29 13:56:15 2009 -0700
@@ -102,9 +102,9 @@
  *   <p><li> The {@link java.nio.file.attribute.UserPrincipalLookupService}
  *   interface defines methods to lookup user or group principals. </li>
  *
- *   <p><li> The {@link java.nio.file.attribute.Attribute} interface
+ *   <p><li> The {@link java.nio.file.attribute.FileAttribute} interface
  *   represents the value of an attribute for cases where the attribute value is
- *   require to be set atomically when creating an object in the file system. </li>
+ *   required to be set atomically when creating an object in the file system. </li>
  *
  * </ul>
  *
--- a/src/share/classes/java/util/concurrent/ConcurrentLinkedQueue.java	Wed Jul 29 11:19:14 2009 -0700
+++ b/src/share/classes/java/util/concurrent/ConcurrentLinkedQueue.java	Wed Jul 29 13:56:15 2009 -0700
@@ -562,7 +562,8 @@
     /**
      * Returns an iterator over the elements in this queue in proper sequence.
      * The returned iterator is a "weakly consistent" iterator that
-     * will never throw {@link ConcurrentModificationException},
+     * will never throw {@link java.util.ConcurrentModificationException
+     * ConcurrentModificationException},
      * and guarantees to traverse elements as they existed upon
      * construction of the iterator, and may (but is not guaranteed to)
      * reflect any modifications subsequent to construction.
--- a/src/share/classes/java/util/concurrent/LinkedBlockingDeque.java	Wed Jul 29 11:19:14 2009 -0700
+++ b/src/share/classes/java/util/concurrent/LinkedBlockingDeque.java	Wed Jul 29 13:56:15 2009 -0700
@@ -988,7 +988,8 @@
      * Returns an iterator over the elements in this deque in proper sequence.
      * The elements will be returned in order from first (head) to last (tail).
      * The returned {@code Iterator} is a "weakly consistent" iterator that
-     * will never throw {@link ConcurrentModificationException},
+     * will never throw {@link java.util.ConcurrentModificationException
+     * ConcurrentModificationException},
      * and guarantees to traverse elements as they existed upon
      * construction of the iterator, and may (but is not guaranteed to)
      * reflect any modifications subsequent to construction.
@@ -1004,7 +1005,8 @@
      * sequential order.  The elements will be returned in order from
      * last (tail) to first (head).
      * The returned {@code Iterator} is a "weakly consistent" iterator that
-     * will never throw {@link ConcurrentModificationException},
+     * will never throw {@link java.util.ConcurrentModificationException
+     * ConcurrentModificationException},
      * and guarantees to traverse elements as they existed upon
      * construction of the iterator, and may (but is not guaranteed to)
      * reflect any modifications subsequent to construction.
--- a/src/share/classes/java/util/concurrent/LinkedBlockingQueue.java	Wed Jul 29 11:19:14 2009 -0700
+++ b/src/share/classes/java/util/concurrent/LinkedBlockingQueue.java	Wed Jul 29 13:56:15 2009 -0700
@@ -728,7 +728,8 @@
     /**
      * Returns an iterator over the elements in this queue in proper sequence.
      * The returned {@code Iterator} is a "weakly consistent" iterator that
-     * will never throw {@link ConcurrentModificationException},
+     * will never throw {@link java.util.ConcurrentModificationException
+     * ConcurrentModificationException},
      * and guarantees to traverse elements as they existed upon
      * construction of the iterator, and may (but is not guaranteed to)
      * reflect any modifications subsequent to construction.