t

xsbti.compile

Javadoc

trait Javadoc extends JavaTool

Represent the interface of a Javadoc generator.

Linear Supertypes
JavaTool, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Javadoc
  2. JavaTool
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def run(sources: Array[VirtualFile], options: Array[String], output: Output, incToolOptions: IncToolOptions, reporter: Reporter, log: Logger): Boolean

    Run a concrete Java tool (either Java compiler or Javadoc generator).

    Run a concrete Java tool (either Java compiler or Javadoc generator).

    sources

    The list of Java source files to compile.

    options

    The set of all the options to pass to the java compiler. These options also include JVM options like the classpath.

    incToolOptions

    The set of options to pass to the Java compiler for the incremental dependency analysis.

    reporter

    The reporter for semantic error messages.

    log

    The logger to dump output into.

    returns

    true if no errors, false otherwise.

    Definition Classes
    JavaTool