docSample

subCode

package subCode

If you are having trouble getting the package descriptions to show up with scaladoc, the following might help:

The root package.scala file should look like:

/**
 * Scaladoc comments
 *
 *    Note: No beginning package statement for the root package.
 */
 package object rootPackage


A sub package.scala file should look like:

package rootPackage

/**
 * Scaladoc comments
 */
 package object subPackage

Back to the beginning, docSample

Visibility
  1. Public
  2. All

Type Members

  1. class subClassSample extends AnyRef

    Description