Author: markt Date: Wed Jan 20 21:33:44 2016 New Revision: 1725818 URL: http://svn.apache.org/viewvc?rev=1725818&view=rev Log: A handful of Jasper Javadoc fixes
Modified: tomcat/trunk/java/org/apache/jasper/compiler/TagFileProcessor.java tomcat/trunk/java/org/apache/jasper/compiler/TagLibraryInfoImpl.java tomcat/trunk/java/org/apache/jasper/runtime/PageContextImpl.java tomcat/trunk/java/org/apache/jasper/xmlparser/SymbolTable.java Modified: tomcat/trunk/java/org/apache/jasper/compiler/TagFileProcessor.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/TagFileProcessor.java?rev=1725818&r1=1725817&r2=1725818&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/compiler/TagFileProcessor.java (original) +++ tomcat/trunk/java/org/apache/jasper/compiler/TagFileProcessor.java Wed Jan 20 21:33:44 2016 @@ -483,6 +483,8 @@ class TagFileProcessor { * @param tagLibInfo * the TagLibraryInfo object associated with this TagInfo * @return a TagInfo object assembled from the directives in the tag file. + * + * @throws JasperException If an error occurs during parsing */ @SuppressWarnings("null") // page can't be null public static TagInfo parseTagFileDirectives(ParserController pc, @@ -682,6 +684,11 @@ class TagFileProcessor { * tag files used in a JSP files. The directives in the tag files are * assumed to have been processed and encapsulated as TagFileInfo in the * CustomTag nodes. + * + * @param compiler Compiler to use to compile tag files + * @param page The page from to scan for tag files to compile + * + * @throws JasperException If an error occurs during the scan or compilation */ public void loadTagFiles(Compiler compiler, Node.Nodes page) throws JasperException { Modified: tomcat/trunk/java/org/apache/jasper/compiler/TagLibraryInfoImpl.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/TagLibraryInfoImpl.java?rev=1725818&r1=1725817&r2=1725818&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/compiler/TagLibraryInfoImpl.java (original) +++ tomcat/trunk/java/org/apache/jasper/compiler/TagLibraryInfoImpl.java Wed Jan 20 21:33:44 2016 @@ -105,9 +105,7 @@ class TagLibraryInfoImpl extends TagLibr return sw.toString(); } - /** - * Constructor. - */ + public TagLibraryInfoImpl(JspCompilationContext ctxt, ParserController pc, PageInfo pi, String prefix, String uriIn, TldResourcePath tldResourcePath, ErrorDispatcher err) Modified: tomcat/trunk/java/org/apache/jasper/runtime/PageContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/runtime/PageContextImpl.java?rev=1725818&r1=1725817&r2=1725818&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/runtime/PageContextImpl.java (original) +++ tomcat/trunk/java/org/apache/jasper/runtime/PageContextImpl.java Wed Jan 20 21:33:44 2016 @@ -925,6 +925,7 @@ public class PageContextImpl extends Pag * @param functionMap * Maps prefix and name to Method * @return The result of the evaluation + * @throws ELException If an error occurs during the evaluation */ public static Object proprietaryEvaluate(final String expression, final Class<?> expectedType, final PageContext pageContext, Modified: tomcat/trunk/java/org/apache/jasper/xmlparser/SymbolTable.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/xmlparser/SymbolTable.java?rev=1725818&r1=1725817&r2=1725818&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/xmlparser/SymbolTable.java (original) +++ tomcat/trunk/java/org/apache/jasper/xmlparser/SymbolTable.java Wed Jan 20 21:33:44 2016 @@ -162,10 +162,6 @@ public class SymbolTable { */ private static final class Entry { - // - // Data - // - /** * Symbol. */ @@ -182,11 +178,7 @@ public class SymbolTable { */ private final Entry next; - // - // Constructors - // - - /** + /* * Constructs a new entry from the specified symbol information and * next entry reference. */ @@ -196,7 +188,5 @@ public class SymbolTable { symbol = new String(characters).intern(); this.next = next; } - - } // class Entry - -} // class SymbolTable + } +} \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org