forked from scala/scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplicit-inheritance-usecase.scala
47 lines (46 loc) · 1.54 KB
/
explicit-inheritance-usecase.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// This tests the implicit comment inheritance capabilities of scaladoc for usecases (no $super, no @inheritdoc)
/** Testing use case inheritance */
class UseCaseInheritDoc {
/**
* The base comment. And another sentence...
*
* @param arg1 The T term comment
* @param arg2 The string comment
* @tparam T the type of the first argument
* @throws SomeException if the function is not called with correct parameters
* @return The return comment
* @see The Manual
* @note Be careful!
* @example function[Int](3, "something")
* @author a Scala developer
* @version 0.0.2
* @since 0.0.1
* @todo Call mom.
*
* @usecase def function[T](arg1: T, arg2: String): Double
*
* Starting line
*
* @inheritdoc
* @inheritdoc
*
* Ending line
*
* @param arg1 Start1 @inheritdoc End1
* @param arg2 Start2 @inheritdoc End2
* @param arg3 Start3 ShouldWarn @inheritdoc End3
* @tparam T StartT @inheritdoc EndT
* @tparam ShouldWarn StartSW @inheritdoc EndSW
* @throws SomeException StartEx @inheritdoc EndEx
* @throws SomeOtherException StartSOE Should Warn @inheritdoc EndSOE
* @return StartRet @inheritdoc EndRet
* @see StartSee @inheritdoc EndSee
* @note StartNote @inheritdoc EndNote
* @example StartExample @inheritdoc EndExample
* @author StartAuthor @inheritdoc EndAuthor
* @version StartVer @inheritdoc EndVer
* @since StartSince @inheritdoc EndSince
* @todo StartTodo @inheritdoc And dad! EndTodo
*/
def function[T](implicit arg1: T, arg2: String): Double = 0.0d
}