Author: psteitz
Date: Sun Jan 6 13:46:01 2008
New Revision: 609416
URL: http://svn.apache.org/viewvc?rev=609416&view=rev
Log:
Javadoc fixes.
Modified:
commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java
Modified:
commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java
URL:
http://svn.apache.org/viewvc/commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java?rev=609416&r1=609415&r2=609416&view=diff
==============================================================================
---
commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java
(original)
+++
commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java
Sun Jan 6 13:46:01 2008
@@ -903,6 +903,9 @@
* in a pool (if there are idle instances available). False means that
* the pools behave as FIFO queues - objects are taken from idle object
* pools in the order that they are returned.
+ *
+ * @return <code>true</code> if the pools are configured to act as LIFO
queues
+ * @since 1.4
*/
public synchronized boolean getLifo() {
return _lifo;
@@ -914,6 +917,9 @@
* idle instances available). False means that the pools behave as FIFO
* queues - objects are taken from idle object pools in the order that
* they are returned.
+ *
+ * @param lifo the new value for the lifo property
+ * @since 1.4
*/
public synchronized void setLifo(boolean lifo) {
this._lifo = lifo;