Author: kkolinko Date: Fri Jul 17 08:50:45 2009 New Revision: 795018 URL: http://svn.apache.org/viewvc?rev=795018&view=rev Log: Fix JavaDoc warnings
Modified: tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/OutputBuffer.java tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorCreateTask.java tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/authenticator/SingleSignOnEntry.java tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/mbeans/JMXAdaptorLifecycleListener.java tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/startup/Embedded.java tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/users/MemoryUserDatabase.java tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/PooledSocketSender.java tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/ReplicationValve.java tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/tcp/ReplicationValve.java tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JspUtil.java Modified: tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/OutputBuffer.java URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/OutputBuffer.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/OutputBuffer.java (original) +++ tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/OutputBuffer.java Fri Jul 17 08:50:45 2009 @@ -26,7 +26,7 @@ * Output buffer. * * This class is used internally by the protocol implementation. All writes from higher level code should happen - * via Resonse.doWrite(). + * via Response.doWrite(). * * @author Remy Maucherat */ @@ -37,7 +37,7 @@ * * @param chunk data to write * @param response used to allow buffers that can be shared by multiple responses. - * @return + * @return number of bytes written * @throws IOException */ public int doWrite(ByteChunk chunk, Response response) Modified: tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java (original) +++ tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java Fri Jul 17 08:50:45 2009 @@ -1633,7 +1633,7 @@ /** * Put the object into the queue. * - * @param object the object to be appended to the queue (first element). + * @param worker the object to be appended to the queue (first element). */ public void push(Worker worker) { workers[end++] = worker; Modified: tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorCreateTask.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorCreateTask.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorCreateTask.java (original) +++ tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorCreateTask.java Fri Jul 17 08:50:45 2009 @@ -87,14 +87,14 @@ // ------------------------------------------------------------- Properties /** - * @return Returns the classLoader. + * @return Returns the classLoader name. */ public String getClassLoader() { return classLoader; } /** - * @param classLoader The classLoader to set. + * @param classLoaderName The classLoader name to set. */ public void setClassLoader(String classLoaderName) { this.classLoader = classLoaderName; Modified: tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/authenticator/SingleSignOnEntry.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/authenticator/SingleSignOnEntry.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/authenticator/SingleSignOnEntry.java (original) +++ tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/authenticator/SingleSignOnEntry.java Fri Jul 17 08:50:45 2009 @@ -118,8 +118,7 @@ /** * Is <code>Session</code> associated with this SSO? * - * @param sso The <code>SingleSignOn</code> valve that is managing - * the SSO session. + * @param session The session. * @return session exists */ public synchronized boolean sessionExists(Session session) { Modified: tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/mbeans/JMXAdaptorLifecycleListener.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/mbeans/JMXAdaptorLifecycleListener.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/mbeans/JMXAdaptorLifecycleListener.java (original) +++ tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/mbeans/JMXAdaptorLifecycleListener.java Fri Jul 17 08:50:45 2009 @@ -141,7 +141,7 @@ } /** - * @paramhost The host to set. + * @param host The host to set. */ public void setHost(String host) { this.host = host; Modified: tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java (original) +++ tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java Fri Jul 17 08:50:45 2009 @@ -1642,7 +1642,7 @@ * * @param request The servlet request we are processing * @param response The servlet response we are creating - * @param resourceInfo File object + * @param resourceAttributes The resource information * @return boolean true if the resource meets the specified condition, * and false if the condition is not satisfied, in which case request * processing is stopped @@ -1687,7 +1687,7 @@ * * @param request The servlet request we are processing * @param response The servlet response we are creating - * @param resourceInfo File object + * @param resourceAttributes The resource information * @return boolean true if the resource meets the specified condition, * and false if the condition is not satisfied, in which case request * processing is stopped @@ -1726,7 +1726,7 @@ * * @param request The servlet request we are processing * @param response The servlet response we are creating - * @param resourceInfo File object + * @param resourceAttributes The resource information * @return boolean true if the resource meets the specified condition, * and false if the condition is not satisfied, in which case request * processing is stopped @@ -1786,7 +1786,7 @@ * * @param request The servlet request we are processing * @param response The servlet response we are creating - * @param resourceInfo File object + * @param resourceAttributes The resource information * @return boolean true if the resource meets the specified condition, * and false if the condition is not satisfied, in which case request * processing is stopped @@ -1819,7 +1819,7 @@ * output stream, and ensure that both streams are closed before returning * (even in the face of an exception). * - * @param resourceInfo The resource information + * @param cacheEntry The resource information * @param ostream The output stream to write to * * @exception IOException if an input/output error occurs @@ -1870,7 +1870,7 @@ * output stream, and ensure that both streams are closed before returning * (even in the face of an exception). * - * @param resourceInfo The resource info + * @param cacheEntry The resource information * @param writer The writer to write to * * @exception IOException if an input/output error occurs @@ -1918,7 +1918,7 @@ * output stream, and ensure that both streams are closed before returning * (even in the face of an exception). * - * @param resourceInfo The ResourceInfo object + * @param cacheEntry The resource information * @param ostream The output stream to write to * @param range Range the client wanted to retrieve * @exception IOException if an input/output error occurs @@ -1954,7 +1954,7 @@ * output stream, and ensure that both streams are closed before returning * (even in the face of an exception). * - * @param resourceInfo The ResourceInfo object + * @param cacheEntry The resource information * @param writer The writer to write to * @param range Range the client wanted to retrieve * @exception IOException if an input/output error occurs @@ -1997,7 +1997,7 @@ * output stream, and ensure that both streams are closed before returning * (even in the face of an exception). * - * @param resourceInfo The ResourceInfo object + * @param cacheEntry The resource information * @param ostream The output stream to write to * @param ranges Enumeration of the ranges the client wanted to retrieve * @param contentType Content type of the resource @@ -2055,7 +2055,7 @@ * output stream, and ensure that both streams are closed before returning * (even in the face of an exception). * - * @param resourceInfo The ResourceInfo object + * @param cacheEntry The resource information * @param writer The writer to write to * @param ranges Enumeration of the ranges the client wanted to retrieve * @param contentType Content type of the resource Modified: tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/startup/Embedded.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/startup/Embedded.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/startup/Embedded.java (original) +++ tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/startup/Embedded.java Fri Jul 17 08:50:45 2009 @@ -227,7 +227,7 @@ /** - * Return true if redirction of standard streams is enabled. + * Return true if redirection of standard streams is enabled. */ public boolean isRedirectStreams() { @@ -237,9 +237,10 @@ /** - * Enables or disables naming support. + * Enables or disables redirection of standard streams. * - * @param useNaming The new use naming value + * @param redirectStreams <code>true</code> to redirect streams, + * <code>false</code> to disable redirection */ public void setRedirectStreams(boolean redirectStreams) { Modified: tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/users/MemoryUserDatabase.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/users/MemoryUserDatabase.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/users/MemoryUserDatabase.java (original) +++ tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/users/MemoryUserDatabase.java Fri Jul 17 08:50:45 2009 @@ -205,7 +205,7 @@ /** * Setting the readonly status of the user database * - * @param pathname The new pathname + * @param readonly The new readonly status */ public void setReadonly(boolean readonly) { Modified: tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/PooledSocketSender.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/PooledSocketSender.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/PooledSocketSender.java (original) +++ tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/PooledSocketSender.java Fri Jul 17 08:50:45 2009 @@ -107,7 +107,6 @@ /** * send message and use a pool of SocketSenders * - * @param messageId Message unique identifier * @param data Message data * @throws java.io.IOException */ Modified: tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/ReplicationValve.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/ReplicationValve.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/ReplicationValve.java (original) +++ tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/ReplicationValve.java Fri Jul 17 08:50:45 2009 @@ -525,7 +525,7 @@ /** * Send message delta message from request session - * @param request current request + * @param session current session * @param manager session manager * @param cluster replication cluster */ Modified: tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/tcp/ReplicationValve.java URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/tcp/ReplicationValve.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/tcp/ReplicationValve.java (original) +++ tomcat/container/tc5.5.x/modules/ha/src/share/org/apache/catalina/ha/tcp/ReplicationValve.java Fri Jul 17 08:50:45 2009 @@ -524,7 +524,7 @@ /** * Send message delta message from request session - * @param request current request + * @param session current session * @param manager session manager * @param cluster replication cluster */ Modified: tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JspUtil.java URL: http://svn.apache.org/viewvc/tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JspUtil.java?rev=795018&r1=795017&r2=795018&view=diff ============================================================================== --- tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JspUtil.java (original) +++ tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JspUtil.java Fri Jul 17 08:50:45 2009 @@ -853,7 +853,7 @@ * the given tag file path * * @deprecated Use {...@link #getTagHandlerClassName(String, String, - * ErrorDispatcher) + * ErrorDispatcher)} * See https://issues.apache.org/bugzilla/show_bug.cgi?id=46471 */ public static String getTagHandlerClassName(String path, --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org