scala.tools.nsc.doc.model

diagram

package diagram

Visibility
  1. Public
  2. All

Type Members

  1. case class ClassDiagram(thisNode: ThisNode, superClasses: List[Node], subClasses: List[Node], incomingImplicits: List[ImplicitNode], outgoingImplicits: List[ImplicitNode]) extends Diagram with Product with Serializable

    A class diagram

  2. trait DepthInfo extends AnyRef

  3. abstract class Diagram extends AnyRef

    The diagram base classes

  4. trait DiagramDirectiveParser extends AnyRef

    This trait takes care of parsing @{inheritance, content}Diagram annotations

  5. trait DiagramFactory extends DiagramDirectiveParser

    This trait takes care of generating the diagram for classes and packages

  6. case class ImplicitNode(tpe: TypeEntity, tpl: Option[TemplateEntity], tooltip: Option[String]) extends Node with Product with Serializable

    A class or trait the thisnode can be converted to by an implicit conversion TODO: I think it makes more sense to use the tpe links to templates instead of the TemplateEntity for implicit nodes since some implicit conversions convert the class to complex types that cannot be represented as a single tmeplate

  7. abstract class Node extends AnyRef

  8. case class NormalNode(tpe: TypeEntity, tpl: Option[TemplateEntity], tooltip: Option[String]) extends Node with Product with Serializable

    The usual node

  9. case class OutsideNode(tpe: TypeEntity, tpl: Option[TemplateEntity], tooltip: Option[String]) extends Node with Product with Serializable

    An outside node is shown in packages when a class from a different package makes it to the package diagram due to its relation to a class in the template (see @contentDiagram hideInheritedNodes annotation)

  10. case class PackageDiagram(nodes: List[Node], edges: List[(Node, List[Node])]) extends Diagram with Product with Serializable

  11. class PackageDiagramDepth extends DepthInfo

  12. case class ThisNode(tpe: TypeEntity, tpl: Option[TemplateEntity], tooltip: Option[String]) extends Node with Product with Serializable

    The node for the current class

Value Members

  1. object ClassNode

  2. object Node

  3. object ObjectNode

  4. object OtherNode

  5. object OutsideNode extends Serializable

  6. object TraitNode