View | Details | Raw Unified | Return to bug 50018
Collapse All | Expand All

(-)java/org/apache/jasper/compiler/ParserController.java (-2 / +2 lines)
Lines 125-131 Link Here
125
     *
125
     *
126
     * @param inFileName The path to the resource to be included.
126
     * @param inFileName The path to the resource to be included.
127
     * @param parent The parent node of the include directive.
127
     * @param parent The parent node of the include directive.
128
     * @param jarFileUrl The JAR file from which to read the included resource,
128
     * @param jarResource The JAR file from which to read the included resource,
129
     * or null of the included resource is to be read from the filesystem
129
     * or null of the included resource is to be read from the filesystem
130
     */
130
     */
131
    public Node.Nodes parse(String inFileName, Node parent,
131
    public Node.Nodes parse(String inFileName, Node parent,
Lines 142-148 Link Here
142
     * This is invoked by the compiler 
142
     * This is invoked by the compiler 
143
     *
143
     *
144
     * @param inFileName    The name of the tag file to be parsed.
144
     * @param inFileName    The name of the tag file to be parsed.
145
     * @param tagFileJarUrl The location of the tag file.
145
     * @param jarResource The location of the tag file.
146
     */
146
     */
147
    public Node.Nodes parseTagFileDirectives(String inFileName,
147
    public Node.Nodes parseTagFileDirectives(String inFileName,
148
            JarResource jarResource)
148
            JarResource jarResource)
(-)java/org/apache/jasper/compiler/TagFileProcessor.java (-2 / +2 lines)
Lines 480-487 Link Here
480
     *            the tag name as specified in the TLD
480
     *            the tag name as specified in the TLD
481
     * @param path
481
     * @param path
482
     *            the path for the tagfile
482
     *            the path for the tagfile
483
     * @param tagFileJarUrl
483
     * @param jarResource
484
     *            the url for the Jar containing the tag file 
484
     *            the {@link JarResource} for the Jar containing the tag file 
485
     * @param tagLibInfo
485
     * @param tagLibInfo
486
     *            the TagLibraryInfo object associated with this TagInfo
486
     *            the TagLibraryInfo object associated with this TagInfo
487
     * @return a TagInfo object assembled from the directives in the tag file.
487
     * @return a TagInfo object assembled from the directives in the tag file.

Return to bug 50018