Class

scala.meta.internal.docstrings

Comment

Related Doc: package docstrings

Permalink

abstract class Comment extends AnyRef

A Scaladoc comment and all its tags.

Note: the only instantiation site of this class is in model.CommentFactory.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Comment
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Comment()

    Permalink

Abstract Value Members

  1. abstract def authors: List[Body]

    Permalink

    A list of authors.

    A list of authors. The empty list is used when no author is defined.

  2. abstract def body: Body

    Permalink

    The main body of the comment that describes what the entity does and is.

  3. abstract def constructor: Option[Body]

    Permalink

    A description for the primary constructor

  4. abstract def contentDiagram: List[String]

    Permalink

    A set of diagram directives for the content diagram

  5. abstract def deprecated: Option[Body]

    Permalink

    Whether the entity is deprecated.

    Whether the entity is deprecated. Using the @deprecated Scala attribute is preferable to using this Scaladoc tag.

  6. abstract def example: List[Body]

    Permalink

    A usage example related to the entity.

  7. abstract def group: Option[String]

    Permalink

    The group this member is part of

  8. abstract def groupDesc: Map[String, Body]

    Permalink

    Member group descriptions

  9. abstract def groupNames: Map[String, String]

    Permalink

    Member group names (overriding the short tag)

  10. abstract def groupPrio: Map[String, Int]

    Permalink

    Member group priorities

  11. abstract def hideImplicitConversions: List[String]

    Permalink

    A list of implicit conversions to hide

  12. abstract def inheritDiagram: List[String]

    Permalink

    A set of diagram directives for the inheritance diagram

  13. abstract def note: List[Body]

    Permalink

    An additional note concerning the contract of the entity.

  14. abstract def result: Option[Body]

    Permalink

    A description of the result of the entity.

    A description of the result of the entity. Typically, this provides additional information on the domain of the result, contractual post-conditions, etc.

  15. abstract def see: List[Body]

    Permalink

    A list of other resources to see, including links to other entities or to external documentation.

    A list of other resources to see, including links to other entities or to external documentation. The empty list is used when no other resource is mentioned.

  16. abstract def shortDescription: Option[Text]

    Permalink

    A short description used in the entity-view and search results

  17. abstract def since: Option[Body]

    Permalink

    A version number of a containing entity where this member-entity was introduced.

  18. abstract def throws: Map[String, Body]

    Permalink

    A map of exceptions that the entity can throw when accessed, and a description of what they mean.

  19. abstract def todo: List[Body]

    Permalink

    An annotation as to expected changes on this entity.

  20. abstract def typeParams: Map[String, Body]

    Permalink

    A map of type parameters, and a description of what they are.

    A map of type parameters, and a description of what they are. Typically, this provides additional information on the domain of the parameters.

  21. abstract def valueParams: Map[String, Body]

    Permalink

    A map of value parameters, and a description of what they are.

    A map of value parameters, and a description of what they are. Typically, this provides additional information on the domain of the parameters, contractual pre-conditions, etc.

  22. abstract def version: Option[Body]

    Permalink

    The version number of the entity.

    The version number of the entity. There is no formatting or further meaning attached to this value.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. def short: Inline

    Permalink

    A shorter version of the body.

    A shorter version of the body. Either from @shortDescription or the first sentence of the body.

  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    Comment → AnyRef → Any
  18. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped