Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-04-23 01:37:48 +0000
committerJoakim Erdfelt2015-04-23 01:37:55 +0000
commitf7adc1aa5f569590284bfaba561472a9a5e3094f (patch)
tree331772ab2c33fbd11fa8136df446880d7c3d1e96 /jetty-runner
parentd434f419d28a730bf3f8f5d9c8c0b20d5e6e0e37 (diff)
downloadorg.eclipse.jetty.project-f7adc1aa5f569590284bfaba561472a9a5e3094f.tar.gz
org.eclipse.jetty.project-f7adc1aa5f569590284bfaba561472a9a5e3094f.tar.xz
org.eclipse.jetty.project-f7adc1aa5f569590284bfaba561472a9a5e3094f.zip
464727 - Update Javadoc for Java 8 DocLint
Diffstat (limited to 'jetty-runner')
-rw-r--r--jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java30
1 files changed, 4 insertions, 26 deletions
diff --git a/jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java b/jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java
index b018766eee..53bc02fab2 100644
--- a/jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java
+++ b/jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java
@@ -56,13 +56,10 @@ import org.eclipse.jetty.util.security.Constraint;
import org.eclipse.jetty.webapp.WebAppContext;
import org.eclipse.jetty.xml.XmlConfiguration;
-
-
/**
* Runner
- *
+ * <p>
* Combine jetty classes into a single executable jar and run webapps based on the args to it.
- *
*/
public class Runner
{
@@ -96,8 +93,6 @@ public class Runner
/**
* Classpath
- *
- *
*/
public class Classpath
{
@@ -149,22 +144,15 @@ public class Runner
}
}
-
-
-
- /**
- *
- */
public Runner()
{
-
}
/**
* Generate helpful usage message and exit
*
- * @param error
+ * @param error the error header
*/
public void usage(String error)
{
@@ -204,8 +192,8 @@ public class Runner
/**
* Configure a jetty instance and deploy the webapps presented as args
*
- * @param args
- * @throws Exception
+ * @param args the command line arguments
+ * @throws Exception if unable to configure
*/
public void configure(String[] args) throws Exception
{
@@ -494,10 +482,6 @@ public class Runner
}
- /**
- * @param handler
- * @param handlers
- */
protected void prependHandler (Handler handler, HandlerCollection handlers)
{
if (handler == null || handlers == null)
@@ -513,9 +497,6 @@ public class Runner
- /**
- * @throws Exception
- */
public void run() throws Exception
{
_server.start();
@@ -546,9 +527,6 @@ public class Runner
- /**
- * @param args
- */
public static void main(String[] args)
{
Runner runner = new Runner();

Back to the top