summaryrefslogtreecommitdiff
path: root/src/scaladoc/scala/tools/nsc/doc/html/Doclet.scala
blob: cad7cf329815f6776a5b6808b90e724054b1d66d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* NSC -- new Scala compiler
 * Copyright 2007-2013 LAMP/EPFL
 * @author  David Bernard, Manohar Jonnalagedda
 */

package scala.tools.nsc
package doc
package html

import doclet._

/** The default doclet used by the scaladoc command line tool
  * when no user-provided doclet is provided. */
class Doclet extends Generator with Universer with Indexer {

  def generateImpl() {
    new html.HtmlFactory(universe, index, new ScalaDocReporter(universe.settings)).generate()
  }

}