Packages

abstract class Generator extends AnyRef

Custom Scaladoc generators must implement the Generator class. A custom generator can be selected in Scaladoc using the -doc-generator command line option. The Generator class does not provide data about the documented code. A number of data provider traits can be used to configure what data is actually available to the generator:

  • A Universer provides a Universe data structure representing the interfaces and comments of the documented program. To implement this class only requires defining method generateImpl.
Source
Generator.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Generator
  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 Generator()

Concrete Value Members

  1. def generate(): Unit

    Outputs documentation (as a side effect).