Author: markt Date: Thu Mar 19 13:36:40 2015 New Revision: 1667744 URL: http://svn.apache.org/r1667744 Log: More Javadoc fixes (mainly to test CI system)
Modified: tomcat/trunk/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java Modified: tomcat/trunk/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java?rev=1667744&r1=1667743&r2=1667744&view=diff ============================================================================== --- tomcat/trunk/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java (original) +++ tomcat/trunk/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java Thu Mar 19 13:36:40 2015 @@ -110,7 +110,10 @@ public class CompressionResponseStream e // --------------------------------------------------------- Public Methods /** - * Set debug level + * Set debug level. + * + * @param debug The higher the number, the more detail shown. Currently the + * range 0 (none) to 3 (everything) is used. */ public void setDebugLevel(int debug) { this.debug = debug; @@ -139,7 +142,9 @@ public class CompressionResponseStream e } /** - * Set supported mime types + * Set supported mime types. + * + * @param compressionMimeTypes The mimetypes that will be compressed. */ public void setCompressionMimeTypes(String[] compressionMimeTypes) { this.compressionMimeTypes = compressionMimeTypes; @@ -401,16 +406,16 @@ public class CompressionResponseStream e // -------------------------------------------------------- Package Methods - /** * Has this response stream been closed? + * + * @return <code>true</code> if the stream has been closed, otherwise false. */ public boolean closed() { - - return (this.closed); - + return closed; } + /** * Checks if any entry in the string array starts with the specified value * --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org