Author: scolebourne
Date: Sun Jul 24 16:29:41 2005
New Revision: 224675
URL: http://svn.apache.org/viewcvs?rev=224675&view=rev
Log:
Javadoc fixes
bug 35836, from Nathan Beyer
Modified:
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteListIterator.java
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharListIterator.java
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleListIterator.java
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatListIterator.java
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntListIterator.java
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongListIterator.java
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortListIterator.java
Modified:
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteListIterator.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteListIterator.java?rev=224675&r1=224674&r2=224675&view=diff
==============================================================================
---
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteListIterator.java
(original)
+++
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteListIterator.java
Sun Jul 24 16:29:41 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.
@@ -80,7 +80,7 @@
* forward direction.
*
* @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();
@@ -98,7 +98,7 @@
* reverse direction.
*
* @return the previous element in me
- * @throws NoSuchElementException if there is no previous element
+ * @throws java.util.NoSuchElementException if there is no previous element
*/
byte previous();
Modified:
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharListIterator.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharListIterator.java?rev=224675&r1=224674&r2=224675&view=diff
==============================================================================
---
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharListIterator.java
(original)
+++
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharListIterator.java
Sun Jul 24 16:29:41 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.
@@ -80,7 +80,7 @@
* forward direction.
*
* @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();
@@ -98,7 +98,7 @@
* reverse direction.
*
* @return the previous element in me
- * @throws NoSuchElementException if there is no previous element
+ * @throws java.util.NoSuchElementException if there is no previous element
*/
char previous();
Modified:
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleListIterator.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleListIterator.java?rev=224675&r1=224674&r2=224675&view=diff
==============================================================================
---
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleListIterator.java
(original)
+++
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleListIterator.java
Sun Jul 24 16:29:41 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.
@@ -80,7 +80,7 @@
* forward direction.
*
* @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();
@@ -98,7 +98,7 @@
* reverse direction.
*
* @return the previous element in me
- * @throws NoSuchElementException if there is no previous element
+ * @throws java.util.NoSuchElementException if there is no previous element
*/
double previous();
Modified:
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatListIterator.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatListIterator.java?rev=224675&r1=224674&r2=224675&view=diff
==============================================================================
---
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatListIterator.java
(original)
+++
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatListIterator.java
Sun Jul 24 16:29:41 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.
@@ -80,7 +80,7 @@
* forward direction.
*
* @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();
@@ -98,7 +98,7 @@
* reverse direction.
*
* @return the previous element in me
- * @throws NoSuchElementException if there is no previous element
+ * @throws java.util.NoSuchElementException if there is no previous element
*/
float previous();
Modified:
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntListIterator.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntListIterator.java?rev=224675&r1=224674&r2=224675&view=diff
==============================================================================
---
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntListIterator.java
(original)
+++
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntListIterator.java
Sun Jul 24 16:29:41 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.
@@ -80,7 +80,7 @@
* forward direction.
*
* @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();
@@ -98,7 +98,7 @@
* reverse direction.
*
* @return the previous element in me
- * @throws NoSuchElementException if there is no previous element
+ * @throws java.util.NoSuchElementException if there is no previous element
*/
int previous();
Modified:
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongListIterator.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongListIterator.java?rev=224675&r1=224674&r2=224675&view=diff
==============================================================================
---
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongListIterator.java
(original)
+++
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongListIterator.java
Sun Jul 24 16:29:41 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.
@@ -80,7 +80,7 @@
* forward direction.
*
* @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();
@@ -98,7 +98,7 @@
* reverse direction.
*
* @return the previous element in me
- * @throws NoSuchElementException if there is no previous element
+ * @throws java.util.NoSuchElementException if there is no previous element
*/
long previous();
Modified:
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortListIterator.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortListIterator.java?rev=224675&r1=224674&r2=224675&view=diff
==============================================================================
---
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortListIterator.java
(original)
+++
jakarta/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortListIterator.java
Sun Jul 24 16:29:41 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.
@@ -80,7 +80,7 @@
* forward direction.
*
* @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();
@@ -98,7 +98,7 @@
* reverse direction.
*
* @return the previous element in me
- * @throws NoSuchElementException if there is no previous element
+ * @throws java.util.NoSuchElementException if there is no previous element
*/
short previous();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]