Fixing Javadoc in jetty-webapp
This commit is contained in:
parent
61c08370dc
commit
c14e0dc11e
|
@ -656,13 +656,13 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/** Add to the list of Server classes.
|
||||
* @see #setServerClasses(String[])
|
||||
* @see <a href="Jetty Documentation: Classloading">http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html</a>
|
||||
* @param classOrPackage A fully qualified class name (eg com.foo.MyClass)
|
||||
* or a qualified package name ending with '.' (eg com.foo.). If the class
|
||||
* or package has '-' it is excluded from the server classes and order is thus
|
||||
* important when added system class patterns. This argument may also be a comma
|
||||
* separated list of classOrPackage patterns.
|
||||
* @see #setServerClasses(String[])
|
||||
* @see <a href="http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html">Jetty Documentation: Classloading</a>
|
||||
*/
|
||||
public void addServerClass(String classOrPackage)
|
||||
{
|
||||
|
@ -674,13 +674,13 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/** Prepend to the list of Server classes.
|
||||
* @see #setServerClasses(String[])
|
||||
* @see <a href="Jetty Documentation: Classloading">http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html</a>
|
||||
* @param classOrPackage A fully qualified class name (eg com.foo.MyClass)
|
||||
* or a qualified package name ending with '.' (eg com.foo.). If the class
|
||||
* or package has '-' it is excluded from the server classes and order is thus
|
||||
* important when added system class patterns. This argument may also be a comma
|
||||
* separated list of classOrPackage patterns.
|
||||
* @see #setServerClasses(String[])
|
||||
* @see <a href="http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html">Jetty Documentation: Classloading</a>
|
||||
*/
|
||||
public void prependServerClass(String classOrPackage)
|
||||
{
|
||||
|
@ -706,13 +706,13 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/** Add to the list of System classes.
|
||||
* @see <a href="Jetty Documentation: Classloading">http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html</a>
|
||||
* @see #setSystemClasses(String[])
|
||||
* @param classOrPackage A fully qualified class name (eg com.foo.MyClass)
|
||||
* or a qualified package name ending with '.' (eg com.foo.). If the class
|
||||
* or package has '-' it is excluded from the system classes and order is thus
|
||||
* important when added system class patterns. This argument may also be a comma
|
||||
* separated list of classOrPackage patterns.
|
||||
* @see #setSystemClasses(String[])
|
||||
* @see <a href="http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html">Jetty Documentation: Classloading</a>
|
||||
*/
|
||||
public void addSystemClass(String classOrPackage)
|
||||
{
|
||||
|
@ -725,13 +725,13 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/** Prepend to the list of System classes.
|
||||
* @see #setSystemClasses(String[])
|
||||
* @see <a href="Jetty Documentation: Classloading">http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html</a>
|
||||
* @param classOrPackage A fully qualified class name (eg com.foo.MyClass)
|
||||
* or a qualified package name ending with '.' (eg com.foo.). If the class
|
||||
* or package has '-' it is excluded from the system classes and order is thus
|
||||
* important when added system class patterns.This argument may also be a comma
|
||||
* separated list of classOrPackage patterns.
|
||||
* @see #setSystemClasses(String[])
|
||||
* @see <a href="http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html">Jetty Documentation: Classloading</a>
|
||||
*/
|
||||
public void prependSystemClass(String classOrPackage)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue