Packages

o

scala.tools.nsc

JarRunner

object JarRunner extends CommonRunner

Source
MainGenericRunner.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JarRunner
  2. CommonRunner
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def run(urls: Seq[URL], objectName: String, arguments: Seq[String]): Unit

    Run a given object, specified by name, using a specified classpath and argument list.

    Run a given object, specified by name, using a specified classpath and argument list.

    Definition Classes
    CommonRunner
    Exceptions thrown
  2. def runAndCatch(urls: Seq[URL], objectName: String, arguments: Seq[String]): Either[Throwable, Boolean]

    Catches exceptions enumerated by run (in the case of InvocationTargetException, unwrapping it) and returns it any thrown in Left(x).

    Catches exceptions enumerated by run (in the case of InvocationTargetException, unwrapping it) and returns it any thrown in Left(x).

    Definition Classes
    CommonRunner
  3. def runJar(settings: GenericRunnerSettings, jarPath: String, arguments: Seq[String]): Either[Throwable, Boolean]