blob: 6a0c935e16a470477ee99c06b929fca7ef3df903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package bar
/**
* Second class in second module description [foo.FirstClass]
* @author John Doe
* @version 0.1.3
* @param name Name description text text text.
*/
class SecondClass(val name: String) {
val firstProperty = "propertystring"
/**
* Second property in second module description [foo.FirstSubclass]
*/
var secondProperty: String = ""
set(value) {
println("Second property not set")
}
init {
println("InitializerBlock")
}
}
|