Fixing broken javadoc

This commit is contained in:
Joakim Erdfelt 2016-05-04 13:35:15 -07:00
parent 00543724ec
commit 43ba169b43
7 changed files with 15 additions and 26 deletions

View File

@ -93,7 +93,7 @@ public class MavenMetaInfConfiguration extends MetaInfConfiguration
/**
* Add in the classes dirs from test/classes and target/classes
* @see org.eclipse.jetty.webapp.WebInfConfiguration#findClassDirs(org.eclipse.jetty.webapp.WebAppContext)
* @see org.eclipse.jetty.webapp.MetaInfConfiguration#findClassDirs(org.eclipse.jetty.webapp.WebAppContext)
*/
@Override
protected List<Resource> findClassDirs(WebAppContext context) throws Exception

View File

@ -157,8 +157,7 @@ public class OSGiMetaInfConfiguration extends MetaInfConfiguration
/**
* Consider the fragment bundles associated with the bundle of the webapp being deployed.
*
*
* @see org.eclipse.jetty.webapp.WebInfConfiguration#findJars(org.eclipse.jetty.webapp.WebAppContext)
* @see org.eclipse.jetty.webapp.MetaInfConfiguration#findJars(org.eclipse.jetty.webapp.WebAppContext)
*/
@Override
protected List<Resource> findJars (WebAppContext context)

View File

@ -68,7 +68,7 @@ public class TopologicalSort<T>
}
/**
* An alternative to {@link #addDependency(Object, Object)}, which is
* An alternative to {@link #addDependency(Object, Object[])}, which is
* equivalent to addDependency(after,before) as the after item is dependent
* of the before item.
* @param before The item will be sorted before the after
@ -80,7 +80,7 @@ public class TopologicalSort<T>
}
/** Sort the passed array according to dependencies previously set with
* {@link #addDependency(Object, Object)}. Where possible, ordering will be
* {@link #addDependency(Object, Object[])}. Where possible, ordering will be
* preserved if no dependency
* @param array The array to be sorted.
*/
@ -98,7 +98,7 @@ public class TopologicalSort<T>
}
/** Sort the passed list according to dependencies previously set with
* {@link #addDependency(Object, Object)}. Where possible, ordering will be
* {@link #addDependency(Object, Object[])}. Where possible, ordering will be
* preserved if no dependency
* @param list The list to be sorted.
*/

View File

@ -148,7 +148,7 @@ public interface Configuration
interface DisabledByDefault extends Configuration {}
/**
* A Configuration that will cause {@link Configurations#configure(WebAppContext) to abort with a false return
* A Configuration that will cause {@link Configurations#configure(WebAppContext)} to abort with a false return
*/
interface AbortConfiguration extends DisabledByDefault,Configuration {}

View File

@ -68,9 +68,6 @@ public class Configurations extends AbstractList<Configuration>
/* ------------------------------------------------------------ */
/**
* @return
*/
public static synchronized List<Configuration> getKnown()
{
if (__known.isEmpty())
@ -96,10 +93,6 @@ public class Configurations extends AbstractList<Configuration>
/* ------------------------------------------------------------ */
/**
* @param classes
* @throws Exception
*/
public static synchronized void setKnown (String ... classes)
{
if (!__known.isEmpty())

View File

@ -143,7 +143,8 @@ public class WebAppClassLoader extends URLClassLoader
* configured so as to allow server classes to be visible</p>
* @param action The action to run
* @return The return from the action
* @throws Exception
* @throws Exception when not able to run with server classes
* @param <T> the type of PrivilegedExceptionAction
*/
public static <T> T runWithServerClassAccess(PrivilegedExceptionAction<T> action) throws Exception
{

View File

@ -90,10 +90,8 @@ import org.eclipse.jetty.util.resource.ResourceCollection;
* <blockquote>
* {@link #doStart()}:
* <ul>
* <li>{@link #preConfigure()}</li>
* <li>{@link #preConfigure()}
* <ul>
* <li>{@link #loadSystemClasses()}</li>
* <li>{@link #loadServerClasses()}</li>
* <li>Add all Server class inclusions from known {@link Configurations}</li>
* <li>{@link #loadConfigurations()} and sort</li>
* <li>Add all Server class exclusions from enabled {@link Configurations}</li>
@ -116,8 +114,8 @@ import org.eclipse.jetty.util.resource.ResourceCollection;
* </ul>
* </li>
* <li>{@link MetaData#resolve(WebAppContext)}</li>
* <li>{@link #startWebapp()}
* <li>QuickStart may generate here and/or abort start</li>
* <li>{@link #startContext()}
* <li>QuickStart may generate here and/or abort start
* <ul>
* <li>{@link ServletContextHandler#startContext}
* <ul>
@ -129,7 +127,7 @@ import org.eclipse.jetty.util.resource.ResourceCollection;
* <li>{@link #callContextInitialized(javax.servlet.ServletContextListener, javax.servlet.ServletContextEvent)}</li>
* </ul>
* </li>
* <li>{@links ServletHandler#initialize()}</li>
* <li>{@link ServletHandler#initialize()}</li>
* </ul>
* </li>
* </ul>
@ -463,9 +461,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
* specifically:
* <ul>
* <li>Instantiate the {@link Configuration} instances with a call to {@link #loadConfigurations()}.
* <li>Setup the default System classes by calling {@link #loadSystemClasses()}
* <li>Setup the default Server classes by calling <code>loadServerClasses()</code>
* <li>Instantiates a classload (if one is not already set)
* <li>Instantiates a classloader (if one is not already set)
* <li>Calls the {@link Configuration#preConfigure(WebAppContext)} method of all
* Configuration instances.
* </ul>
@ -696,7 +692,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
* Server classes/packages are classes used to implement the server and are hidden
* from the context. If the context needs to load these classes, it must have its
* own copy of them in WEB-INF/lib or WEB-INF/classes.
* @param serverClasses
* @param serverClasses the server classes pattern
*
*/
public void setServerClasspathPattern(ClasspathPattern serverClasses)
@ -712,7 +708,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
* System classes/packages are classes provided by the JVM and that
* cannot be replaced by classes of the same name from WEB-INF,
* regardless of the value of {@link #setParentLoaderPriority(boolean)}.
* @param systemClasses
* @param systemClasses the system classes pattern
*/
public void setSystemClasspathPattern(ClasspathPattern systemClasses)
{