blob: e3ae0aac98f4a6cc5bacba7a18044f4958bc07ed (
plain)
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
|
@lombok.Data
class GetterSetterJavadoc1 {
/**
* Some text
*
* @param fieldName Hello, World
* --- GETTER ---
* Getter section
*
* @return Sky is blue
*/
private int fieldName;
}
class GetterSetterJavadoc2 {
/**
* Some text
*
* @param fieldName Hello, World
* @return Sky is blue
*/
@lombok.Getter @lombok.Setter private int fieldName;
}
class GetterSetterJavadoc3 {
/**
* Some text
*
* **SETTER**
* Setter section
* @param fieldName Hello, World
* **GETTER**
* Getter section
* @return Sky is blue
*/
@lombok.Getter @lombok.Setter private int fieldName;
}
|