javadoc fixes part 14 (ticket #1894)

This commit is contained in:
zzz
2017-01-27 03:14:34 +00:00
parent 112fa503e6
commit e0e06d73eb
17 changed files with 19 additions and 21 deletions

View File

@ -56,7 +56,7 @@ public class GraphHelper extends FormHandler {
}
/**
* This must be output in the jsp since <meta> must be in the <head>
* This must be output in the jsp since *lt;meta&gt; must be in the &lt;head&gt;
* @since 0.8.7
*/
public String getRefreshMeta() {

View File

@ -118,6 +118,7 @@ public class SummaryHelper extends HelperBase {
}
**/
/** allowReseed */
public boolean allowReseed() {
return _context.netDb().isInitialized() &&
(_context.netDb().getKnownRouters() < 30) ||

View File

@ -37,7 +37,7 @@ import org.eclipse.jetty.webapp.WebAppContext;
*
* No, wac.addClassPath() does not work. For more info see:
*
* http://servlets.com/archive/servlet/ReadMsg?msgId=511113&listName=jetty-support
* http://servlets.com/archive/servlet/ReadMsg?msgId=511113&amp;listName=jetty-support
*
* @since 0.7.12
* @author zzz

View File

@ -27,7 +27,7 @@ import org.eclipse.jetty.webapp.WebAppContext;
*
* No, wac.addClassPath() does not work. For more info see:
*
* http://servlets.com/archive/servlet/ReadMsg?msgId=511113&listName=jetty-support
* http://servlets.com/archive/servlet/ReadMsg?msgId=511113&amp;listName=jetty-support
*
* @since 0.7.12
* @author zzz
@ -51,7 +51,7 @@ public class WebAppStarter {
* Adds and starts.
* Prior to 0.9.28, was not guaranteed to throw on failure.
*
* @throws just about anything, caller would be wise to catch Throwable
* @throws Exception just about anything, caller would be wise to catch Throwable
*/
static void startWebApp(RouterContext ctx, ContextHandlerCollection server,
String appName, String warPath) throws Exception {
@ -123,8 +123,8 @@ public class WebAppStarter {
}
/**
* stop it and remove the context
* @throws just about anything, caller would be wise to catch Throwable
* Stop it and remove the context.
* Throws just about anything, caller would be wise to catch Throwable
*/
static void stopWebApp(String appName) {
ContextHandler wac = getWebApp(appName);