package base
Content Hierarchy
Type Members
- trait CommentFactoryBase extends AnyRef
The comment parser transforms raw comment strings into
Comment
objects.The comment parser transforms raw comment strings into
Comment
objects. Callparse
to run the parser. Note that the parser is stateless and should only be built once for a given Scaladoc run. - sealed trait LinkTo extends AnyRef
- final case class LinkToExternalTpl(name: String, baseUrl: String, tpl: TemplateEntity) extends LinkTo with Product with Serializable
- final case class LinkToMember[Mbr, Tpl](mbr: Mbr, tpl: Tpl) extends LinkTo with Product with Serializable
- final case class LinkToTpl[Tpl](tpl: Tpl) extends LinkTo with Product with Serializable
- trait MemberLookupBase extends AnyRef
This trait extracts all required information for documentation from compilation units.
This trait extracts all required information for documentation from compilation units. The base trait has been extracted to allow getting light-weight documentation for a particular symbol in the IDE.
- final case class Tooltip(name: String) extends LinkTo with Product with Serializable
The Scala compiler and reflection APIs.