Packages

c

scala.tools.nsc.doc

DocFactory

class DocFactory extends AnyRef

A documentation processor controls the process of generating Scala documentation, which is as follows.

* A simplified compiler instance (with only the front-end phases enabled) * is created, and additional sourceless comments are registered. * Documentable files are compiled, thereby filling the compiler's symbol table. * A documentation model is extracted from the post-compilation symbol table. * A generator is used to transform the model into the correct final format (HTML).

A processor contains a single compiler instantiated from the processor's settings. Each call to document uses the same compiler instance with the same symbol table. In particular, this implies that the scaladoc site obtained from a call to run will contain documentation about files compiled during previous calls to the same processor's run method.

Self Type
DocFactory
Source
DocFactory.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DocFactory
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DocFactory(reporter: Reporter, settings: Settings)

    reporter

    The reporter to which both documentation and compilation errors will be reported.

    settings

    The settings to be used by the documenter and compiler for generating documentation.

Value Members

  1. def document(files: List[String]): Unit

    Generate document(s) for all files containing scaladoc documentation.

    Generate document(s) for all files containing scaladoc documentation.

    files

    The list of paths (relative to the compiler's source path, or absolute) of files to document.

  2. val documentError: PartialFunction[Throwable, Unit]
  3. def makeUniverse(source: Either[List[String], String]): Option[Universe]

    Creates a scaladoc site for all symbols defined in this call's source, as well as those defined in sources of previous calls to the same processor.

    Creates a scaladoc site for all symbols defined in this call's source, as well as those defined in sources of previous calls to the same processor.

    source

    The list of paths (relative to the compiler's source path, or absolute) of files to document or the source code.

  4. val reporter: Reporter
  5. val settings: Settings
  6. object NoCompilerRunException extends Throwable with ControlThrowable
  7. object compiler extends ScaladocGlobal

    The unique compiler instance used by this processor and constructed from its settings.