bloritsch 2002/09/30 10:50:14
Modified: event/src/java/org/apache/excalibur/event Source.java
Log:
fix javadocs to refer to the interface type and not "queue"
Revision Changes Path
1.16 +5 -5
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Source.java
Index: Source.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Source.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- Source.java 30 Sep 2002 17:49:13 -0000 1.15
+++ Source.java 30 Sep 2002 17:50:14 -0000 1.16
@@ -80,28 +80,28 @@
* nothing left on the queue or in case of a timeout while
* attempting to obtain the mutex
*
- * @return the next queue element on the queue
+ * @return the next queue element on the Source
*/
Object dequeue();
/**
* Dequeues all available elements. Returns a zero-sized array in
* case of a timeout while attempting to obtain the mutex or if
- * there is nothing left on the queue.
+ * there is nothing left on the Source.
*
- * @return all pending queue elements on the queue
+ * @return all pending elements on the Source
*/
Object[] dequeueAll();
/**
* Dequeues at most <code>num</code> available elements. Returns a
* zero-sized array in case of a timeout while attempting to
- * obtain the mutex or if there is nothing left on the queue.
+ * obtain the mutex or if there is nothing left on the Source.
*
* @param num The maximum number of elements to dequeue
*
* @return At most <code>num</code> elements from the
- * queue
+ * Source
*/
Object[] dequeue( int num );
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>