You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2005/07/25 01:20:57 UTC

svn commit: r224670 - in /jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives: ByteCollections.java CharCollections.java DoubleCollections.java FloatCollections.java LongCollections.java ShortCollections.java

Author: scolebourne
Date: Sun Jul 24 16:20:46 2005
New Revision: 224670

URL: http://svn.apache.org/viewcvs?rev=224670&view=rev
Log:
Javadoc fixes
bug 35836, from Nathan Beyer

Modified:
    jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollections.java
    jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollections.java
    jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollections.java
    jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollections.java
    jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollections.java
    jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollections.java

Modified: jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollections.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollections.java?rev=224670&r1=224669&r2=224670&view=diff
==============================================================================
--- jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollections.java (original)
+++ jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollections.java Sun Jul 24 16:20:46 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@
      * Returns an unmodifiable version of the given non-null ByteList.
      * @param list the non-null ByteList to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null ByteList
-     * @throws NullPoByteerException if the given ByteList is null
+     * @throws NullPointerException if the given ByteList is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableByteList#wrap
      */    
     public static ByteList unmodifiableByteList(ByteList list) throws NullPointerException {
@@ -80,7 +80,7 @@
      * Returns an unmodifiable version of the given non-null ByteIterator.
      * @param iter the non-null ByteIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null ByteIterator
-     * @throws NullPoByteerException if the given ByteIterator is null
+     * @throws NullPointerException if the given ByteIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableByteIterator#wrap
      */    
     public static ByteIterator unmodifiableByteIterator(ByteIterator iter) {
@@ -94,7 +94,7 @@
      * Returns an unmodifiable version of the given non-null ByteListIterator.
      * @param iter the non-null ByteListIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null ByteListIterator
-     * @throws NullPoByteerException if the given ByteListIterator is null
+     * @throws NullPointerException if the given ByteListIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableByteListIterator#wrap
      */    
     public static ByteListIterator unmodifiableByteListIterator(ByteListIterator iter) {

Modified: jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollections.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollections.java?rev=224670&r1=224669&r2=224670&view=diff
==============================================================================
--- jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollections.java (original)
+++ jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollections.java Sun Jul 24 16:20:46 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@
      * Returns an unmodifiable version of the given non-null CharList.
      * @param list the non-null CharList to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null CharList
-     * @throws NullPoCharerException if the given CharList is null
+     * @throws NullPointerException if the given CharList is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableCharList#wrap
      */    
     public static CharList unmodifiableCharList(CharList list) throws NullPointerException {
@@ -80,7 +80,7 @@
      * Returns an unmodifiable version of the given non-null CharIterator.
      * @param iter the non-null CharIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null CharIterator
-     * @throws NullPoCharerException if the given CharIterator is null
+     * @throws NullPointerException if the given CharIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableCharIterator#wrap
      */    
     public static CharIterator unmodifiableCharIterator(CharIterator iter) {
@@ -94,7 +94,7 @@
      * Returns an unmodifiable version of the given non-null CharListIterator.
      * @param iter the non-null CharListIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null CharListIterator
-     * @throws NullPoCharerException if the given CharListIterator is null
+     * @throws NullPointerException if the given CharListIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableCharListIterator#wrap
      */    
     public static CharListIterator unmodifiableCharListIterator(CharListIterator iter) {

Modified: jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollections.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollections.java?rev=224670&r1=224669&r2=224670&view=diff
==============================================================================
--- jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollections.java (original)
+++ jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollections.java Sun Jul 24 16:20:46 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@
      * Returns an unmodifiable version of the given non-null DoubleList.
      * @param list the non-null DoubleList to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null DoubleList
-     * @throws NullPoDoubleerException if the given DoubleList is null
+     * @throws NullPointerException if the given DoubleList is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableDoubleList#wrap
      */    
     public static DoubleList unmodifiableDoubleList(DoubleList list) throws NullPointerException {
@@ -80,7 +80,7 @@
      * Returns an unmodifiable version of the given non-null DoubleIterator.
      * @param iter the non-null DoubleIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null DoubleIterator
-     * @throws NullPoDoubleerException if the given DoubleIterator is null
+     * @throws NullPointerException if the given DoubleIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableDoubleIterator#wrap
      */    
     public static DoubleIterator unmodifiableDoubleIterator(DoubleIterator iter) {
@@ -94,7 +94,7 @@
      * Returns an unmodifiable version of the given non-null DoubleListIterator.
      * @param iter the non-null DoubleListIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null DoubleListIterator
-     * @throws NullPoDoubleerException if the given DoubleListIterator is null
+     * @throws NullPointerException if the given DoubleListIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableDoubleListIterator#wrap
      */    
     public static DoubleListIterator unmodifiableDoubleListIterator(DoubleListIterator iter) {

Modified: jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollections.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollections.java?rev=224670&r1=224669&r2=224670&view=diff
==============================================================================
--- jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollections.java (original)
+++ jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollections.java Sun Jul 24 16:20:46 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@
      * Returns an unmodifiable version of the given non-null FloatList.
      * @param list the non-null FloatList to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null FloatList
-     * @throws NullPoFloaterException if the given FloatList is null
+     * @throws NullPointerException if the given FloatList is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableFloatList#wrap
      */    
     public static FloatList unmodifiableFloatList(FloatList list) throws NullPointerException {
@@ -80,7 +80,7 @@
      * Returns an unmodifiable version of the given non-null FloatIterator.
      * @param iter the non-null FloatIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null FloatIterator
-     * @throws NullPoFloaterException if the given FloatIterator is null
+     * @throws NullPointerException if the given FloatIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableFloatIterator#wrap
      */    
     public static FloatIterator unmodifiableFloatIterator(FloatIterator iter) {
@@ -94,7 +94,7 @@
      * Returns an unmodifiable version of the given non-null FloatListIterator.
      * @param iter the non-null FloatListIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null FloatListIterator
-     * @throws NullPoFloaterException if the given FloatListIterator is null
+     * @throws NullPointerException if the given FloatListIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableFloatListIterator#wrap
      */    
     public static FloatListIterator unmodifiableFloatListIterator(FloatListIterator iter) {

Modified: jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollections.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollections.java?rev=224670&r1=224669&r2=224670&view=diff
==============================================================================
--- jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollections.java (original)
+++ jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollections.java Sun Jul 24 16:20:46 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@
      * Returns an unmodifiable version of the given non-null LongList.
      * @param list the non-null LongList to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null LongList
-     * @throws NullPoLongerException if the given LongList is null
+     * @throws NullPointerException if the given LongList is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableLongList#wrap
      */    
     public static LongList unmodifiableLongList(LongList list) throws NullPointerException {
@@ -80,7 +80,7 @@
      * Returns an unmodifiable version of the given non-null LongIterator.
      * @param iter the non-null LongIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null LongIterator
-     * @throws NullPoLongerException if the given LongIterator is null
+     * @throws NullPointerException if the given LongIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableLongIterator#wrap
      */    
     public static LongIterator unmodifiableLongIterator(LongIterator iter) {
@@ -94,7 +94,7 @@
      * Returns an unmodifiable version of the given non-null LongListIterator.
      * @param iter the non-null LongListIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null LongListIterator
-     * @throws NullPoLongerException if the given LongListIterator is null
+     * @throws NullPointerException if the given LongListIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableLongListIterator#wrap
      */    
     public static LongListIterator unmodifiableLongListIterator(LongListIterator iter) {

Modified: jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollections.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollections.java?rev=224670&r1=224669&r2=224670&view=diff
==============================================================================
--- jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollections.java (original)
+++ jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollections.java Sun Jul 24 16:20:46 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2004 The Apache Software Foundation
+ * Copyright 2003-2005 The Apache Software Foundation
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@
      * Returns an unmodifiable version of the given non-null ShortList.
      * @param list the non-null ShortList to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null ShortList
-     * @throws NullPoShorterException if the given ShortList is null
+     * @throws NullPointerException if the given ShortList is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableShortList#wrap
      */    
     public static ShortList unmodifiableShortList(ShortList list) throws NullPointerException {
@@ -80,7 +80,7 @@
      * Returns an unmodifiable version of the given non-null ShortIterator.
      * @param iter the non-null ShortIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null ShortIterator
-     * @throws NullPoShorterException if the given ShortIterator is null
+     * @throws NullPointerException if the given ShortIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableShortIterator#wrap
      */    
     public static ShortIterator unmodifiableShortIterator(ShortIterator iter) {
@@ -94,7 +94,7 @@
      * Returns an unmodifiable version of the given non-null ShortListIterator.
      * @param iter the non-null ShortListIterator to wrap in an unmodifiable decorator
      * @return an unmodifiable version of the given non-null ShortListIterator
-     * @throws NullPoShorterException if the given ShortListIterator is null
+     * @throws NullPointerException if the given ShortListIterator is null
      * @see org.apache.commons.collections.primitives.decorators.UnmodifiableShortListIterator#wrap
      */    
     public static ShortListIterator unmodifiableShortListIterator(ShortListIterator iter) {



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org