summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/doc/model/Entity.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2010-01-13 17:00:14 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2010-01-13 17:00:14 +0000
commit25e7a7c350202f02a80c7747c4329268122b101c (patch)
treef526721a511cbebfcd16a98deb9b62eac015a99e /src/compiler/scala/tools/nsc/doc/model/Entity.scala
parent020b930ec950bc50ec9817f704b6fe30f2b8006d (diff)
downloadscala-25e7a7c350202f02a80c7747c4329268122b101c.tar.gz
scala-25e7a7c350202f02a80c7747c4329268122b101c.tar.bz2
scala-25e7a7c350202f02a80c7747c4329268122b101c.zip
[scaladoc] Use cases are printed.
Diffstat (limited to 'src/compiler/scala/tools/nsc/doc/model/Entity.scala')
-rw-r--r--src/compiler/scala/tools/nsc/doc/model/Entity.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/doc/model/Entity.scala b/src/compiler/scala/tools/nsc/doc/model/Entity.scala
index 3e61b7f4ee..39e3f0ce59 100644
--- a/src/compiler/scala/tools/nsc/doc/model/Entity.scala
+++ b/src/compiler/scala/tools/nsc/doc/model/Entity.scala
@@ -94,7 +94,9 @@ trait Package extends Object {
def packages: List[Package]
}
-trait NonTemplateMemberEntity extends MemberEntity
+trait NonTemplateMemberEntity extends MemberEntity {
+ def isUseCase: Boolean
+}
/** A method (`def`) of a ''documentable'' class, trait or object. */
trait Def extends NonTemplateMemberEntity {