Author: scolebourne
Date: Sun Jul 24 16:27:06 2005
New Revision: 224673

URL: http://svn.apache.org/viewcvs?rev=224673&view=rev
Log:
Javadoc fixes

bug 35836, from Nathan Beyer

Modified:
    
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteIterator.java
    
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharIterator.java
    
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleIterator.java
    
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatIterator.java
    
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntIterator.java
    
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongIterator.java
    
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortIterator.java

Modified: 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteIterator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteIterator.java?rev=224673&r1=224672&r2=224673&view=diff
==============================================================================
--- 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteIterator.java
 (original)
+++ 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteIterator.java
 Sun Jul 24 16:27:06 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.
@@ -41,7 +41,7 @@
      * Returns the next element in me.
      * 
      * @return the next element in me
-     * @throws NoSuchElementException if there is no next element
+     * @throws java.util.NoSuchElementException if there is no next element
      */          
     byte next();
     

Modified: 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharIterator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharIterator.java?rev=224673&r1=224672&r2=224673&view=diff
==============================================================================
--- 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharIterator.java
 (original)
+++ 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharIterator.java
 Sun Jul 24 16:27:06 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.
@@ -41,7 +41,7 @@
      * Returns the next element in me.
      * 
      * @return the next element in me
-     * @throws NoSuchElementException if there is no next element
+     * @throws java.util.NoSuchElementException if there is no next element
      */          
     char next();
     

Modified: 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleIterator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleIterator.java?rev=224673&r1=224672&r2=224673&view=diff
==============================================================================
--- 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleIterator.java
 (original)
+++ 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleIterator.java
 Sun Jul 24 16:27:06 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.
@@ -41,7 +41,7 @@
      * Returns the next element in me.
      * 
      * @return the next element in me
-     * @throws NoSuchElementException if there is no next element
+     * @throws java.util.NoSuchElementException if there is no next element
      */          
     double next();
     

Modified: 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatIterator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatIterator.java?rev=224673&r1=224672&r2=224673&view=diff
==============================================================================
--- 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatIterator.java
 (original)
+++ 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatIterator.java
 Sun Jul 24 16:27:06 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.
@@ -41,7 +41,7 @@
      * Returns the next element in me.
      * 
      * @return the next element in me
-     * @throws NoSuchElementException if there is no next element
+     * @throws java.util.NoSuchElementException if there is no next element
      */          
     float next();
     

Modified: 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntIterator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntIterator.java?rev=224673&r1=224672&r2=224673&view=diff
==============================================================================
--- 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntIterator.java
 (original)
+++ 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntIterator.java
 Sun Jul 24 16:27:06 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.
@@ -41,7 +41,7 @@
      * Returns the next element in me.
      * 
      * @return the next element in me
-     * @throws NoSuchElementException if there is no next element
+     * @throws java.util.NoSuchElementException if there is no next element
      */          
     int next();
     

Modified: 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongIterator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongIterator.java?rev=224673&r1=224672&r2=224673&view=diff
==============================================================================
--- 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongIterator.java
 (original)
+++ 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongIterator.java
 Sun Jul 24 16:27:06 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.
@@ -41,7 +41,7 @@
      * Returns the next element in me.
      * 
      * @return the next element in me
-     * @throws NoSuchElementException if there is no next element
+     * @throws java.util.NoSuchElementException if there is no next element
      */          
     long next();
     

Modified: 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortIterator.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortIterator.java?rev=224673&r1=224672&r2=224673&view=diff
==============================================================================
--- 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortIterator.java
 (original)
+++ 
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortIterator.java
 Sun Jul 24 16:27:06 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.
@@ -41,7 +41,7 @@
      * Returns the next element in me.
      * 
      * @return the next element in me
-     * @throws NoSuchElementException if there is no next element
+     * @throws java.util.NoSuchElementException if there is no next element
      */          
     short next();
     



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to