Author: metskem
Date: Tue Mar 9 17:51:00 2010
New Revision: 921011
URL: http://svn.apache.org/viewvc?rev=921011&view=rev
Log:
correct javadoc errors
Modified:
incubator/jspwiki/trunk/src/java/org/apache/wiki/auth/SessionMonitor.java
incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/TemplateManager.java
incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/WikiInterceptor.java
Modified:
incubator/jspwiki/trunk/src/java/org/apache/wiki/auth/SessionMonitor.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/auth/SessionMonitor.java?rev=921011&r1=921010&r2=921011&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/java/org/apache/wiki/auth/SessionMonitor.java
(original)
+++ incubator/jspwiki/trunk/src/java/org/apache/wiki/auth/SessionMonitor.java
Tue Mar 9 17:51:00 2010
@@ -280,7 +280,7 @@ public class SessionMonitor implements H
* a new HTTP session. These session attributes are injected:</p>
* <ul>
* <li>{...@code templates} - the template resource resolver map,
returned
- * by {...@link
org.apache.wiki.ui.TemplateManager#getTemplateResources()}</li>
+ * by {...@link
org.apache.wiki.ui.TemplateManager#getResourceResolver(ServletContext)}</li>
* <li>{...@code wikiEngine} - the {...@link
org.apache.wiki.WikiEngine}</li>
* <li>{...@code wikiSession} - the {...@link
org.apache.wiki.WikiSession}</li>
* </ul>
Modified:
incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/TemplateManager.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/TemplateManager.java?rev=921011&r1=921010&r2=921011&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/TemplateManager.java
(original)
+++ incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/TemplateManager.java
Tue Mar 9 17:51:00 2010
@@ -94,7 +94,7 @@ public class TemplateManager extends Mod
* <p>Note that because the resource resolver is stashed as a
ServletContext
* attribute, it is (effectively) lazily initialized once per
ServletContext.
* The stashed resolver is
- * @param servletContext the servlet context
+ * @param context the servlet context
* @return the unmodifiable map
*/
@SuppressWarnings("unchecked")
@@ -335,7 +335,7 @@ public class TemplateManager extends Mod
* current context or by the absolute name.
*
* @param pageContext the JSP PageContext
- * @param name The name of the JSP page to look for (e.g
{...@code wiki.jsp})
+ * @param name The name of the JSP page to look for (e.g {...@code
Wiki.jsp})
* @return The context path to the resource
* @deprecated use {...@link #getResourceResolver(ServletContext)} instead
*/
@@ -402,8 +402,6 @@ public class TemplateManager extends Mod
* Note that this method does not check whether there is anything
* actually in the directories, it just lists them.
*
- * @param servletContext the servlet context
- * @param template The template to search
* @return Set of Strings with the skin names.
* @since 2.3.26
*/
Modified:
incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/WikiInterceptor.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/WikiInterceptor.java?rev=921011&r1=921010&r2=921011&view=diff
==============================================================================
---
incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/WikiInterceptor.java
(original)
+++
incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/WikiInterceptor.java
Tue Mar 9 17:51:00 2010
@@ -277,7 +277,7 @@ public class WikiInterceptor implements
* like WikiTagBase can use it. The attribute can also be accessed as
variables
* using the JSP Expression Language (example:
<code>${wikiActionBean}</code>).
* User preferences are also set up. In addition, the HttpSession attribute
- * {...@value TemplateManager#TEMPLATE_JAVASCRIPT_STRINGS} is set to the
value
+ * {...@link TemplateManager#TEMPLATE_JAVASCRIPT_STRINGS} is set to the
value
* of the localized JavaScript string array as described in
* {...@link
TemplateManager#getTemplateJSStrings(javax.servlet.http.HttpSession, Locale)}.
* @param context the execution context