alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (Comment.scala)

This example Scala source code file (Comment.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

body, body, chain, htmltag, inline, inline, list, list, map, none, option, option, some, text

The Scala Comment.scala source code

/* NSC -- new Scala compiler -- Copyright 2007-2011 LAMP/EPFL */

package scala.tools.nsc
package doc
package model
package comment

import scala.collection._

/** A Scaladoc comment and all its tags.
  * 
  * '''Note:''' the only instantiation site of this class is in [[CommentFactory]].
  * 
  * @author Gilles Dubochet
  * @author Manohar Jonnalagedda */
abstract class Comment {
  
  /** The main body of the comment that describes what the entity does and is.  */
  def body: Body

  private def closeHtmlTags(inline: Inline) = {
    val stack = mutable.ListBuffer.empty[HtmlTag]
    def scan(i: Inline): Unit = {
      i match {
        case Chain(list) =>
          list.foreach(scan)
        case tag: HtmlTag => {
          if (stack.length > 0 && tag.canClose(stack.last)) {
            stack.remove(stack.length-1)
          } else {
            tag.close match {
              case Some(t) =>
                stack += t
              case None =>
                ;
            }
          }
        }
        case _ =>
          ;
      }
    }
    scan(inline)
    Chain(List(inline) ++ stack.reverse)
  }

  /** A shorter version of the body. Usually, this is the first sentence of the body. */
  def short: Inline = {
    body.summary match {
      case Some(s) =>
        closeHtmlTags(s)
      case _ =>
        Text("")
    }
  }

  /** A list of authors. The empty list is used when no author is defined. */
  def authors: List[Body]

  /** 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 mentionned. */
  def see: List[Body]
  
  /** A description of the result of the entity. Typically, this provides additional information on the domain of the
    * result, contractual post-conditions, etc. */
  def result: Option[Body]
  
  /** A map of exceptions that the entity can throw when accessed, and a description of what they mean. */
  def throws: Map[String, Body]
  
  /** 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. */
  def valueParams: Map[String, Body]

  /** A map of type parameters, and a description of what they are. Typically, this provides additional information on
    * the domain of the parameters. */
  def typeParams: Map[String, Body]
  
  /** The version number of the entity. There is no formatting or further meaning attached to this value. */
  def version: Option[Body]
  
  /** A version number of a containing entity where this member-entity was introduced. */
  def since: Option[Body]
  
  /** An annotation as to expected changes on this entity. */
  def todo: List[Body]
  
  /** Whether the entity is deprecated. Using the "@deprecated" Scala attribute is prefereable to using this Scaladoc
    * tag. */
  def deprecated: Option[Body]

  /** An additional note concerning the contract of the entity. */
  def note: List[Body]

  /** A usage example related to the entity. */
  def example: List[Body]

  /** The comment as it appears in the source text. */
  def source: Option[String]
  
  /** A description for the primary constructor */
  def constructor: Option[Body]
  
  override def toString =
    body.toString + "\n" +
    (authors map ("@author " + _.toString)).mkString("\n") +
    (result map ("@return " + _.toString)).mkString("\n") +
    (version map ("@version " + _.toString)).mkString
  
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala Comment.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.