Class Runner

java.lang.Object
  extended byRunner

public class Runner
extends java.lang.Object

Begins execution of applications or system components with the properties and resource URLs passsed on the command line. The properites URL is the first argument, then any number of HTTP resource URL containing class or JAR files may be passed. The class name to be executed is taken as the final argument.

Version:
2.0
Author:
Rob Markel, Matthew Keoshkerian

Constructor Summary
Runner()
           
 
Method Summary
static void main(java.lang.String[] a)
          Main method of the Runner class This method takes in the arguments and the URLs from the properties files and uses them to execute a class from a remote location accessed through http.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Runner

public Runner()
Method Detail

main

public static void main(java.lang.String[] a)
                 throws java.lang.Exception
Main method of the Runner class This method takes in the arguments and the URLs from the properties files and uses them to execute a class from a remote location accessed through http.

Parameters:
a - The array of arguments (seperated by ' ') from the command line execution.
Returns:
void
Throws:
java.lang.Exception

-bottom