*
* @param inFileName The path to the resource to be included.
* @param parent The parent node of the include directive.
- * @param jarFileUrl The JAR file from which to read the included resource,
+ * @param jarResource The JAR file from which to read the included resource,
* or null of the included resource is to be read from the filesystem
*/
public Node.Nodes parse(String inFileName, Node parent,
* This is invoked by the compiler
*
* @param inFileName The name of the tag file to be parsed.
- * @param tagFileJarUrl The location of the tag file.
+ * @param jarResource The location of the tag file.
*/
public Node.Nodes parseTagFileDirectives(String inFileName,
JarResource jarResource)
* @param directivesOnly true if the file to be parsed is a tag file and
* we are only interested in the directives needed for constructing a
* TagFileInfo.
- * @param jarFile The JAR file from which to read the JSP page or tag file,
+ * @param jarResource The JAR file from which to read the JSP page or tag file,
* or null if the JSP page or tag file is to be read from the filesystem
*/
private Node.Nodes doParse(String inFileName,
* the tag name as specified in the TLD
* @param path
* the path for the tagfile
- * @param tagFileJarUrl
- * the url for the Jar containing the tag file
+ * @param jarResource
+ * the Jar resource containing the tag file
* @param tagLibInfo
* the TagLibraryInfo object associated with this TagInfo
* @return a TagInfo object assembled from the directives in the tag file.
<bug>49909</bug>: Fix a regression introduced with the fix for
<bug>47950</bug> that prevented JSTL classes being loaded. (markt)
</fix>
+ <fix>
+ <bug>50018</bug>: Fix some minor Javadoc errors in Jasper source.
+ Based on a patch by sebb. (timw)
+ </fix>
</changelog>
</subsection>
<subsection name="Coyote">