Packages

o

scala.tools.nsc

ObjectRunner

object ObjectRunner extends CommonRunner

An object that runs another object specified by name.

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

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]): Option[Throwable]

    Catches any non-fatal exception thrown by run (in the case of InvocationTargetException, unwrapping it) and returns it in an Option.

    Catches any non-fatal exception thrown by run (in the case of InvocationTargetException, unwrapping it) and returns it in an Option.

    Definition Classes
    CommonRunner