Author: niclas
Date: Sun Aug 1 09:45:09 2004
New Revision: 31077
Modified:
avalon/trunk/planet/facilities/dbcp/api/src/main/org/apache/avalon/dbcp/DbUrlNotFoundException.java
avalon/trunk/planet/facilities/dbcp/api/src/main/org/apache/avalon/dbcp/DriverNotFoundException.java
avalon/trunk/planet/facilities/dbcp/impl/src/main/org/apache/avalon/dbcp/DbcpConnectionManager.java
avalon/trunk/planet/facilities/http/impl/build.xml
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/DumpHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ErrorPageHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ExpiryHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ForwardHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/HTAccessHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/IPAccessHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ModelHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/MsieSslHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/NotFoundHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/NullHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ProxyHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ResourceHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/RootNotFoundHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/SecurityHandler.java
avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/SetResponseHeadersHandler.java
avalon/trunk/planet/facilities/index.xml
avalon/trunk/planet/facilities/jmx/util/src/main/org/apache/avalon/jmx/util/DTDResolver.java
avalon/trunk/planet/facilities/jmx/util/src/main/org/apache/avalon/jmx/util/MBeanInfoBuilder.java
Log:
Fixed up so the Javadocs builds and without warnings.
Modified: avalon/trunk/planet/facilities/dbcp/api/src/main/org/apache/avalon/dbcp/DbUrlNotFoundException.java
==============================================================================
--- avalon/trunk/planet/facilities/dbcp/api/src/main/org/apache/avalon/dbcp/DbUrlNotFoundException.java (original)
+++ avalon/trunk/planet/facilities/dbcp/api/src/main/org/apache/avalon/dbcp/DbUrlNotFoundException.java Sun Aug 1 09:45:09 2004
@@ -47,11 +47,13 @@
}
/**
- * Constructs a new exception with the specified cause and a
- * detail message of (cause==null ? null : cause.toString())
+ * Constructs a new exception with the specified cause.
+ *
+ *
The message will be (cause==null ? null : cause.toString())
* (which typically contains the class and detail message of
- * cause). This constructor is useful for exceptions that are
- * little more than wrappers for other throwables.
+ * cause).
+ * This constructor is useful for exceptions that are
+ * little more than wrappers for other throwables.
*
* @param cause the cause
*/
Modified: avalon/trunk/planet/facilities/dbcp/api/src/main/org/apache/avalon/dbcp/DriverNotFoundException.java
==============================================================================
--- avalon/trunk/planet/facilities/dbcp/api/src/main/org/apache/avalon/dbcp/DriverNotFoundException.java (original)
+++ avalon/trunk/planet/facilities/dbcp/api/src/main/org/apache/avalon/dbcp/DriverNotFoundException.java Sun Aug 1 09:45:09 2004
@@ -24,7 +24,8 @@
* @author Avalon Development Team
* @version $Revision: 1.1 $ $Date: 2004/05/11 21:23:02 $
*/
-public class DriverNotFoundException extends Exception {
+public class DriverNotFoundException extends Exception
+{
/**
* Constructs a new exception with null
as the
@@ -47,11 +48,13 @@
}
/**
- * Constructs a new exception with the specified cause and a
- * detail message of (cause==null ? null : cause.toString())
+ * Constructs a new exception with the specified cause.
+ *
+ * The message will be (cause==null ? null : cause.toString())
* (which typically contains the class and detail message of
- * cause). This constructor is useful for exceptions that are
- * little more than wrappers for other throwables.
+ * cause).
+ * This constructor is useful for exceptions that are
+ * little more than wrappers for other throwables.
*
* @param cause the cause
*/
@@ -63,9 +66,9 @@
/**
* Constructs a new exception with the specified detail message
* and cause.
- *
- * Note that the detail message associated with cause is not
- * automatically incorporated in this exception's detail message.
+ *
+ *
Note that the detail message associated with cause is not
+ * automatically incorporated in this exception's detail message.
*
* @param message the detail message
* @param cause the cause
Modified: avalon/trunk/planet/facilities/dbcp/impl/src/main/org/apache/avalon/dbcp/DbcpConnectionManager.java
==============================================================================
--- avalon/trunk/planet/facilities/dbcp/impl/src/main/org/apache/avalon/dbcp/DbcpConnectionManager.java (original)
+++ avalon/trunk/planet/facilities/dbcp/impl/src/main/org/apache/avalon/dbcp/DbcpConnectionManager.java Sun Aug 1 09:45:09 2004
@@ -254,7 +254,7 @@
/**
* Returns a java.sql.Connection
to the specified data source.
*
- * @param name the name of the data source to obtain a connection to
+ * @param datasource the name of the data source to obtain a connection to
* @return a java.sql.Connection
to the specified data source
*/
public Connection getConnection(String datasource) throws SQLException {
Modified: avalon/trunk/planet/facilities/http/impl/build.xml
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/build.xml (original)
+++ avalon/trunk/planet/facilities/http/impl/build.xml Sun Aug 1 09:45:09 2004
@@ -8,7 +8,7 @@
-
+
@@ -38,14 +38,14 @@
-
+
-
+
@@ -55,7 +55,7 @@
-
+
@@ -65,7 +65,7 @@
-
+
@@ -75,7 +75,7 @@
-
+
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/DumpHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/DumpHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/DumpHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ErrorPageHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ErrorPageHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ErrorPageHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ExpiryHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ExpiryHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ExpiryHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ForwardHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ForwardHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ForwardHandler.java Sun Aug 1 09:45:09 2004
@@ -75,7 +75,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/HTAccessHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/HTAccessHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/HTAccessHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/IPAccessHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/IPAccessHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/IPAccessHandler.java Sun Aug 1 09:45:09 2004
@@ -75,7 +75,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ModelHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ModelHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ModelHandler.java Sun Aug 1 09:45:09 2004
@@ -98,7 +98,7 @@
* which we are supplied with the root composition model for
* the application.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/MsieSslHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/MsieSslHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/MsieSslHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/NotFoundHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/NotFoundHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/NotFoundHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/NullHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/NullHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/NullHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ProxyHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ProxyHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ProxyHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ResourceHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ResourceHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/ResourceHandler.java Sun Aug 1 09:45:09 2004
@@ -78,7 +78,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/RootNotFoundHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/RootNotFoundHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/RootNotFoundHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/SecurityHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/SecurityHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/SecurityHandler.java Sun Aug 1 09:45:09 2004
@@ -71,7 +71,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/SetResponseHeadersHandler.java
==============================================================================
--- avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/SetResponseHeadersHandler.java (original)
+++ avalon/trunk/planet/facilities/http/impl/src/main/org/apache/avalon/http/impl/SetResponseHeadersHandler.java Sun Aug 1 09:45:09 2004
@@ -75,7 +75,7 @@
/**
* Contextulaization of the Handler.
*
- * @param context the supplied listener context
+ * @param ctx the supplied listener context
*
* @exception ContextException if a contextualization error occurs
*
Modified: avalon/trunk/planet/facilities/index.xml
==============================================================================
--- avalon/trunk/planet/facilities/index.xml (original)
+++ avalon/trunk/planet/facilities/index.xml Sun Aug 1 09:45:09 2004
@@ -469,4 +469,36 @@
+
+
+ avalon
+ avalon-planet-facilities
+ 1.0
+ doc
+ SNAPSHOT
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Modified: avalon/trunk/planet/facilities/jmx/util/src/main/org/apache/avalon/jmx/util/DTDResolver.java
==============================================================================
--- avalon/trunk/planet/facilities/jmx/util/src/main/org/apache/avalon/jmx/util/DTDResolver.java (original)
+++ avalon/trunk/planet/facilities/jmx/util/src/main/org/apache/avalon/jmx/util/DTDResolver.java Sun Aug 1 09:45:09 2004
@@ -29,7 +29,7 @@
* @author Avalon Development Team
* @version $Revision: 1.1 $
*
- * @todo update JavaDoc
+ * TODO: update JavaDoc
*/
public class DTDResolver implements EntityResolver
Modified: avalon/trunk/planet/facilities/jmx/util/src/main/org/apache/avalon/jmx/util/MBeanInfoBuilder.java
==============================================================================
--- avalon/trunk/planet/facilities/jmx/util/src/main/org/apache/avalon/jmx/util/MBeanInfoBuilder.java (original)
+++ avalon/trunk/planet/facilities/jmx/util/src/main/org/apache/avalon/jmx/util/MBeanInfoBuilder.java Sun Aug 1 09:45:09 2004
@@ -55,7 +55,7 @@
* @author Avalon Development Team
* @version $Revision: 1.2 $
*
- * @todo update JavaDoc
+ * TODO: update JavaDoc
*/
public class MBeanInfoBuilder extends AbstractLogEnabled
---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org