Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-04-15 19:49:04 +0000
committerJoakim Erdfelt2015-04-15 21:38:35 +0000
commit45b82c32a121909e7b4011e2e301aa14b9b02376 (patch)
tree3fa05704d640ba2d8da6d9257de1d59a5755e736 /jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java
parentb26552cbb582e6744e3af6f534eb091f4ce65bed (diff)
downloadorg.eclipse.jetty.project-45b82c32a121909e7b4011e2e301aa14b9b02376.tar.gz
org.eclipse.jetty.project-45b82c32a121909e7b4011e2e301aa14b9b02376.tar.xz
org.eclipse.jetty.project-45b82c32a121909e7b4011e2e301aa14b9b02376.zip
464727 - Update Javadoc for Java 8 DocLint
+ Fixed jetty-util's javadoc
Diffstat (limited to 'jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java')
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java b/jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java
index 500f9f9c83..062029cef4 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/Loader.java
@@ -69,10 +69,10 @@ public class Loader
/* ------------------------------------------------------------ */
/** Load a class.
*
- * @param loadClass
- * @param name
+ * @param loadClass the class to use for the ClassLoader that was used
+ * @param name the name of the new class to load, using the same ClassLoader as the <code>loadClass</code>
* @return Class
- * @throws ClassNotFoundException
+ * @throws ClassNotFoundException if not able to find the class
*/
@SuppressWarnings("rawtypes")
public static Class loadClass(Class loadClass,String name)
@@ -153,7 +153,9 @@ public class Loader
* above the given classloader.
*
* This is primarily used for jasper.
+ * @param loader the classloader to use
* @return the system class path
+ * @throws Exception if unable to generate the classpath from the resource references
*/
public static String getClassPath(ClassLoader loader) throws Exception
{

Back to the top