Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2013-03-15 04:42:07 +0000
committerGreg Wilkins2013-03-15 04:42:07 +0000
commit8dc6aca9cd20a9e3293c52a4a929d336fac4e484 (patch)
tree8d1f014c758275c8e259f680a1a9eca624819902 /jetty-webapp
parent45916182d8a74f31363ff27d2848b120153154a5 (diff)
downloadorg.eclipse.jetty.project-8dc6aca9cd20a9e3293c52a4a929d336fac4e484.tar.gz
org.eclipse.jetty.project-8dc6aca9cd20a9e3293c52a4a929d336fac4e484.tar.xz
org.eclipse.jetty.project-8dc6aca9cd20a9e3293c52a4a929d336fac4e484.zip
393972 Improve WebAppContext classloading javadoc
Diffstat (limited to 'jetty-webapp')
-rw-r--r--jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java b/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java
index 361099e9f9..55cb294fef 100644
--- a/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java
+++ b/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java
@@ -656,6 +656,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
/* ------------------------------------------------------------ */
/** Add to the list of Server classes.
* @see #setServerClasses(String[])
+ * @see http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html
* @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
@@ -673,6 +674,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
/* ------------------------------------------------------------ */
/** Prepend to the list of Server classes.
* @see #setServerClasses(String[])
+ * @see http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html
* @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
@@ -703,6 +705,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
/* ------------------------------------------------------------ */
/** Add to the list of System classes.
+ * @see http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html
* @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
@@ -722,6 +725,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
/* ------------------------------------------------------------ */
/** Prepend to the list of System classes.
* @see #setSystemClasses(String[])
+ * @see http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html
* @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

Back to the top