glenn 02/04/02 08:10:40 Modified: jasper/src/share/org/apache/jasper CommandLineContext.java EmbededServletOptions.java JspCompilationContext.java JspEngineContext.java Options.java jasper/src/share/org/apache/jasper/compiler CommandLineCompiler.java CommentGenerator.java ExpressionGenerator.java GetPropertyGenerator.java IncludeGenerator.java JspCompiler.java ScriptletGenerator.java SetPropertyGenerator.java TldLocationsCache.java jasper/src/share/org/apache/jasper/logging Logger.java jasper/src/share/org/apache/jasper/runtime BodyContentImpl.java jasper/src/share/org/apache/jasper/servlet JspServlet.java Log: Cleanup Java 1.4 javadoc errors Revision Changes Path 1.9 +11 -8 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/CommandLineContext.java Index: CommandLineContext.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/CommandLineContext.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- CommandLineContext.java 1 Feb 2002 21:54:21 -0000 1.8 +++ CommandLineContext.java 2 Apr 2002 16:10:39 -0000 1.9 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/CommandLineContext.java,v 1.8 2002/02/01 21:54:21 kinman Exp $ - * $Revision: 1.8 $ - * $Date: 2002/02/01 21:54:21 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/CommandLineContext.java,v 1.9 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.9 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -179,7 +179,8 @@ } /** - * What is the scratch directory we are generating code into? + * The scratch directory to generate code into. + * * FIXME: In some places this is called scratchDir and in some * other places it is called outputDir. */ @@ -188,7 +189,8 @@ } /** - * What is the scratch directory we are generating code into? + * The scratch directory to generate code into for javac. + * * FIXME: In some places this is called scratchDir and in some * other places it is called outputDir. */ @@ -259,8 +261,9 @@ } /** - * What's the content type of this JSP? Content type includes - * content type and encoding. + * The content type of this JSP. + * + * Content type includes content type and encoding. */ public String getContentType() { return contentType; @@ -341,7 +344,7 @@ /** * Gets a resource as a stream, relative to the meanings of this * context's implementation. - *@returns a null if the resource cannot be found or represented + * @return a null if the resource cannot be found or represented * as an InputStream. */ public java.io.InputStream getResourceAsStream(String res) { 1.8 +17 -12 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/EmbededServletOptions.java Index: EmbededServletOptions.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/EmbededServletOptions.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- EmbededServletOptions.java 3 Dec 2001 15:47:39 -0000 1.7 +++ EmbededServletOptions.java 2 Apr 2002 16:10:39 -0000 1.8 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/EmbededServletOptions.java,v 1.7 2001/12/03 15:47:39 larryi Exp $ - * $Revision: 1.7 $ - * $Date: 2001/12/03 15:47:39 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/EmbededServletOptions.java,v 1.8 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.8 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -84,23 +84,28 @@ public boolean keepGenerated = true; /** - * Do you want support for "large" files? What this essentially - * means is that we generated code so that the HTML data in a JSP - * file is stored separately as opposed to those constant string - * data being used literally in the generated servlet. + * Flag support for "large" files. + * + * What this essentially means is that we generated code so that + * the HTML data in a JSP file is stored separately as opposed + * to those constant string data being used literally in the + * generated servlet. */ public boolean largeFile = false; /** - * Do you want support for "mapped" files? This will generate - * servlet that has a print statement per line of the JSP file. - * This seems like a really nice feature to have for debugging. + * Flag support for "mapped" files. + * + * This will generate servlet that has a print statement per + * line of the JSP file. This seems like a really nice feature + * to have for debugging. */ public boolean mappedFile = false; /** - * Do you want stack traces and such displayed in the client's - * browser? If this is false, such messages go to the standard + * Flag to display stack traces in the client's browser. + * + * If this is false, such messages go to the standard * error or a log file if the standard error is redirected. */ public boolean sendErrorToClient = false; 1.7 +12 -9 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/JspCompilationContext.java Index: JspCompilationContext.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/JspCompilationContext.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- JspCompilationContext.java 10 Dec 2001 17:43:16 -0000 1.6 +++ JspCompilationContext.java 2 Apr 2002 16:10:39 -0000 1.7 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/JspCompilationContext.java,v 1.6 2001/12/10 17:43:16 kinman Exp $ - * $Revision: 1.6 $ - * $Date: 2001/12/10 17:43:16 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/JspCompilationContext.java,v 1.7 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.7 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -112,14 +112,16 @@ public boolean isErrorPage(); /** - * What is the scratch directory we are generating code into? + * The scratch directory to generate code into. + * * FIXME: In some places this is called scratchDir and in some * other places it is called outputDir. */ public String getOutputDir(); /** - * What is the scratch directory we are generating code into? + * The scratch directory to generate code into for javac. + * * FIXME: In some places this is called scratchDir and in some * other places it is called outputDir. */ @@ -154,8 +156,9 @@ public boolean keepGenerated(); /** - * What's the content type of this JSP? Content type includes - * content type and encoding. + * The content type of this JSP. + * + * Content type includes content type and encoding. */ public String getContentType(); @@ -194,7 +197,7 @@ /** * Gets a resource as a stream, relative to the meanings of this * context's implementation. - *@returns a null if the resource cannot be found or represented + * @return a null if the resource cannot be found or represented * as an InputStream. */ public java.io.InputStream getResourceAsStream(String res); @@ -214,7 +217,7 @@ * Get the 'location' of the TLD associated with * a given taglib 'uri'. * - * @returns An array of two Strings. The first one is + * @return An array of two Strings. The first one is * real path to the TLD. If the path to the TLD points * to a jar file, then the second string is the * name of the entry for the TLD in the jar file. 1.10 +14 -9 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/JspEngineContext.java Index: JspEngineContext.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/JspEngineContext.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- JspEngineContext.java 19 Jun 2001 04:17:26 -0000 1.9 +++ JspEngineContext.java 2 Apr 2002 16:10:39 -0000 1.10 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/JspEngineContext.java,v 1.9 2001/06/19 04:17:26 remm Exp $ - * $Revision: 1.9 $ - * $Date: 2001/06/19 04:17:26 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/JspEngineContext.java,v 1.10 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.10 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -187,7 +187,9 @@ /** * What class loader to use for loading classes while compiling - * this JSP? I don't think this is used right now -- akv. + * this JSP. + * + * I don't think this is used right now -- akv. */ public ClassLoader getClassLoader() { return Thread.currentThread().getContextClassLoader(); @@ -202,7 +204,8 @@ } /** - * What is the scratch directory we are generating code into? + * Get the scratch directory to place generated code. + * * FIXME: In some places this is called scratchDir and in some * other places it is called outputDir. */ @@ -211,7 +214,8 @@ } /** - * What is the scratch directory we are generating code into? + * Get the scratch directory to place generated code for javac. + * * FIXME: In some places this is called scratchDir and in some * other places it is called outputDir. */ @@ -258,8 +262,9 @@ } /** - * What's the content type of this JSP? Content type includes - * content type and encoding. + * Get the content type of this JSP. + * + * Content type includes content type and encoding. */ public String getContentType() { return contentType; @@ -352,7 +357,7 @@ /** * Gets a resource as a stream, relative to the meanings of this * context's implementation. - *@returns a null if the resource cannot be found or represented + * @return a null if the resource cannot be found or represented * as an InputStream. */ public java.io.InputStream getResourceAsStream(String res) 1.8 +4 -4 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/Options.java Index: Options.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/Options.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- Options.java 3 Dec 2001 15:47:39 -0000 1.7 +++ Options.java 2 Apr 2002 16:10:39 -0000 1.8 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/Options.java,v 1.7 2001/12/03 15:47:39 larryi Exp $ - * $Revision: 1.7 $ - * $Date: 2001/12/03 15:47:39 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/Options.java,v 1.8 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.8 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -137,7 +137,7 @@ * web.xml or implicitely via the uri tag in the TLD * of a taglib deployed in a jar file (WEB-INF/lib). * - * @returns the instance of the TldLocationsCache + * @return the instance of the TldLocationsCache * for the web-application. */ public TldLocationsCache getTldLocationsCache(); 1.4 +4 -4 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/CommandLineCompiler.java Index: CommandLineCompiler.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/CommandLineCompiler.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- CommandLineCompiler.java 1 Feb 2002 20:57:27 -0000 1.3 +++ CommandLineCompiler.java 2 Apr 2002 16:10:39 -0000 1.4 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/CommandLineCompiler.java,v 1.3 2002/02/01 20:57:27 kinman Exp $ - * $Revision: 1.3 $ - * $Date: 2002/02/01 20:57:27 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/CommandLineCompiler.java,v 1.4 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.4 $ + * $Date: 2002/04/02 16:10:39 $ * * The Apache Software License, Version 1.1 * @@ -113,7 +113,7 @@ /** * Always outDated. (Of course we are, this is an explicit invocation - *@returns true + * @return true */ public boolean isOutDated() { return true; 1.2 +6 -2 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/CommentGenerator.java Index: CommentGenerator.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/CommentGenerator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- CommentGenerator.java 12 Aug 2000 00:52:07 -0000 1.1 +++ CommentGenerator.java 2 Apr 2002 16:10:39 -0000 1.2 @@ -77,6 +77,12 @@ import org.apache.jasper.Constants; import org.apache.jasper.JspCompilationContext; +/** + * JSP Comment Generator + * + * @author Mandar Raje [Patch submitted by Yury Kamen] + */ + public interface CommentGenerator { /** @@ -86,8 +92,6 @@ * @param start Start position of the block * @param stop End position of the block * @exception JasperException - * - * @author Mandar Raje [Patch submitted by Yury Kamen] */ void generateStartComment(Generator generator, ServletWriter out, Mark start, Mark stop) throws JasperException; 1.3 +4 -4 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/ExpressionGenerator.java Index: ExpressionGenerator.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/ExpressionGenerator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ExpressionGenerator.java 17 Jul 2001 22:12:03 -0000 1.2 +++ ExpressionGenerator.java 2 Apr 2002 16:10:39 -0000 1.3 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/ExpressionGenerator.java,v 1.2 2001/07/17 22:12:03 horwat Exp $ - * $Revision: 1.2 $ - * $Date: 2001/07/17 22:12:03 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/ExpressionGenerator.java,v 1.3 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.3 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -62,7 +62,7 @@ package org.apache.jasper.compiler; /** - * Generator to deal with JSP expressions: <%= ... %> stuff. + * Generator to deal with JSP expressions: <%= ... %> stuff. * * @author Anil K. Vijendran */ 1.3 +4 -4 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/GetPropertyGenerator.java Index: GetPropertyGenerator.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/GetPropertyGenerator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- GetPropertyGenerator.java 11 Oct 2000 19:35:13 -0000 1.2 +++ GetPropertyGenerator.java 2 Apr 2002 16:10:39 -0000 1.3 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/GetPropertyGenerator.java,v 1.2 2000/10/11 19:35:13 shemnon Exp $ - * $Revision: 1.2 $ - * $Date: 2000/10/11 19:35:13 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/GetPropertyGenerator.java,v 1.3 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.3 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -70,7 +70,7 @@ import org.xml.sax.Attributes; /** - * Generator for <jsp:getProperty.../> + * Generator for jsp:getProperty. * * @author Mandar Raje * @author Danno Ferrin 1.10 +4 -4 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/IncludeGenerator.java Index: IncludeGenerator.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/IncludeGenerator.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- IncludeGenerator.java 5 Dec 2001 00:19:18 -0000 1.9 +++ IncludeGenerator.java 2 Apr 2002 16:10:39 -0000 1.10 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/IncludeGenerator.java,v 1.9 2001/12/05 00:19:18 kinman Exp $ - * $Revision: 1.9 $ - * $Date: 2001/12/05 00:19:18 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/IncludeGenerator.java,v 1.10 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.10 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -71,7 +71,7 @@ import org.xml.sax.Attributes; /** - * Generator for <jsp:include.../> + * Generator for jsp:include. * * * @author Anil K. Vijendran 1.9 +1 -1 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/JspCompiler.java Index: JspCompiler.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/JspCompiler.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- JspCompiler.java 3 Oct 2001 23:43:22 -0000 1.8 +++ JspCompiler.java 2 Apr 2002 16:10:39 -0000 1.9 @@ -67,7 +67,7 @@ /** * JspCompiler is an implementation of Compiler with a funky code - * mangling and code generation scheme! + * mangling and code generation scheme. * * The reason that it is both a sub-class of compiler and an implementation * of mangler is because the isOutDated method that is overridden and the 1.2 +4 -4 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/ScriptletGenerator.java Index: ScriptletGenerator.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/ScriptletGenerator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ScriptletGenerator.java 12 Aug 2000 00:52:08 -0000 1.1 +++ ScriptletGenerator.java 2 Apr 2002 16:10:39 -0000 1.2 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/ScriptletGenerator.java,v 1.1 2000/08/12 00:52:08 pierred Exp $ - * $Revision: 1.1 $ - * $Date: 2000/08/12 00:52:08 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/ScriptletGenerator.java,v 1.2 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.2 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -66,7 +66,7 @@ /** - * Generator for <% .... %> stuff. + * Generator for <% .... %> stuff. * * @author Anil K. Vijendran */ 1.4 +4 -4 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/SetPropertyGenerator.java Index: SetPropertyGenerator.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/SetPropertyGenerator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- SetPropertyGenerator.java 30 Nov 2000 21:47:58 -0000 1.3 +++ SetPropertyGenerator.java 2 Apr 2002 16:10:39 -0000 1.4 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/SetPropertyGenerator.java,v 1.3 2000/11/30 21:47:58 pierred Exp $ - * $Revision: 1.3 $ - * $Date: 2000/11/30 21:47:58 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/SetPropertyGenerator.java,v 1.4 2002/04/02 16:10:39 glenn Exp $ + * $Revision: 1.4 $ + * $Date: 2002/04/02 16:10:39 $ * * ==================================================================== * @@ -71,7 +71,7 @@ import org.xml.sax.Attributes; /** - * Generator for <jsp:setProperty .../> + * Generator for jsp:setProperty. * * @author Mandar Raje * @author Danno Ferrin 1.10 +1 -1 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/TldLocationsCache.java Index: TldLocationsCache.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/TldLocationsCache.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- TldLocationsCache.java 2 Jun 2001 20:18:23 -0000 1.9 +++ TldLocationsCache.java 2 Apr 2002 16:10:39 -0000 1.10 @@ -290,7 +290,7 @@ * Get the 'location' of the TLD associated with * a given taglib 'uri'. * - * @returns An array of two Strings. The first one is + * @return An array of two Strings. The first one is * real path to the TLD. If the path to the TLD points * to a jar file, then the second string is the * name of the entry for the TLD in the jar file. 1.3 +4 -2 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/logging/Logger.java Index: Logger.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/logging/Logger.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Logger.java 31 Aug 2000 15:46:40 -0000 1.2 +++ Logger.java 2 Apr 2002 16:10:40 -0000 1.3 @@ -510,12 +510,14 @@ } /** - * If we are timestamping at all, what format do we use to print - * the timestamp? See java.text.SimpleDateFormat. + * If we are timestamping at all, what format to use when + * printing the timestamp. * * Default = "yyyy-MM-dd hh:mm:ss". Special case: "msec" => raw * number of msec since epoch, very efficient but not * user-friendly + * + * @see java.text.SimpleDateFormat **/ public void setTimestampFormat(String value) { 1.5 +2 -2 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/runtime/BodyContentImpl.java Index: BodyContentImpl.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/runtime/BodyContentImpl.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- BodyContentImpl.java 5 Dec 2001 00:19:18 -0000 1.4 +++ BodyContentImpl.java 2 Apr 2002 16:10:40 -0000 1.5 @@ -543,7 +543,7 @@ * Note: this is after evaluation!! There are no scriptlets, * etc in this stream. * - * @returns the value of this BodyJspWriter as a Reader + * @return the value of this BodyJspWriter as a Reader */ public Reader getReader() { return new CharArrayReader (cb, 0, nextChar); @@ -554,7 +554,7 @@ * Note: this is after evaluation!! There are no scriptlets, * etc in this stream. * - * @returns the value of the BodyJspWriter as a String + * @return the value of the BodyJspWriter as a String */ public String getString() { return new String(cb, 0, nextChar); 1.27 +1 -1 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/servlet/JspServlet.java Index: JspServlet.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/servlet/JspServlet.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- JspServlet.java 30 Jan 2002 10:59:33 -0000 1.26 +++ JspServlet.java 2 Apr 2002 16:10:40 -0000 1.27 @@ -101,7 +101,7 @@ import org.apache.jasper.logging.JasperLogger; /** - * The JSP engine (a.k.a Jasper)! + * The JSP engine (a.k.a Jasper). * * The servlet container is responsible for providing a * URLClassLoader for the web application context Jasper
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>