|
31 | 31 | import org.codehaus.plexus.classworlds.realm.NoSuchRealmException;
|
32 | 32 |
|
33 | 33 | /**
|
34 |
| - * Command-line invokable application launcher. |
35 |
| - * <p/> |
36 |
| - * <p/> |
37 |
| - * This launcher class assists in the creation of classloaders and <code>ClassRealm</code>s |
| 34 | + * <p>Command-line invokable application launcher.</p> |
| 35 | + * |
| 36 | + * <p>This launcher class assists in the creation of classloaders and <code>ClassRealm</code>s |
38 | 37 | * from a configuration file and the launching of the application's <code>main</code>
|
39 |
| - * method from the correct class loaded through the correct classloader. |
40 |
| - * </p> |
41 |
| - * <p/> |
42 |
| - * <p/> |
43 |
| - * The path to the configuration file is specified using the <code>classworlds.conf</code> |
| 38 | + * method from the correct class loaded through the correct classloader.</p> |
| 39 | + * |
| 40 | + * <p> The path to the configuration file is specified using the <code>classworlds.conf</code> |
44 | 41 | * system property, typically specified using the <code>-D</code> switch to
|
45 |
| - * <code>java</code>. |
46 |
| - * </p> |
| 42 | + * <code>java</code>.</p> |
47 | 43 | *
|
48 | 44 | * @author <a href="mailto:[email protected]">bob mcwhirter</a>
|
49 | 45 | */
|
@@ -239,12 +235,9 @@ public void launch( String[] args )
|
239 | 235 | }
|
240 | 236 |
|
241 | 237 | /**
|
242 |
| - * Attempt to launch the application through the enhanced main method. |
243 |
| - * <p/> |
244 |
| - * <p/> |
245 |
| - * This will seek a method with the exact signature of: |
246 |
| - * </p> |
247 |
| - * <p/> |
| 238 | + * <p>Attempt to launch the application through the enhanced main method.</p> |
| 239 | + * |
| 240 | + * <p>This will seek a method with the exact signature of:</p> |
248 | 241 | * <pre>
|
249 | 242 | * public static void main(String[] args, ClassWorld world)
|
250 | 243 | * </pre>
|
@@ -297,12 +290,10 @@ protected void launchEnhanced( String[] args )
|
297 | 290 | }
|
298 | 291 |
|
299 | 292 | /**
|
300 |
| - * Attempt to launch the application through the standard main method. |
301 |
| - * <p/> |
302 |
| - * <p/> |
303 |
| - * This will seek a method with the exact signature of: |
304 |
| - * </p> |
305 |
| - * <p/> |
| 293 | + * <p>Attempt to launch the application through the standard main method.</p> |
| 294 | + * |
| 295 | + * <p>This will seek a method with the exact signature of:</p> |
| 296 | +
|
306 | 297 | * <pre>
|
307 | 298 | * public static void main(String[] args)
|
308 | 299 | * </pre>
|
|
0 commit comments