blob: 0dc64092b0afa70dc727bfe8ca5d52cd4d446dab (
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, World1
* --- GETTER ---
* Getter section
*
* @return Sky is blue1
*/
private int fieldName;
}
class GetterSetterJavadoc2 {
/**
* Some text
*
* @param fieldName Hello, World2
* @return Sky is blue2
*/
@lombok.Getter @lombok.Setter private int fieldName;
}
class GetterSetterJavadoc3 {
/**
* Some text
*
* **SETTER**
* Setter section
* @param fieldName Hello, World3
* **GETTER**
* Getter section
* @return Sky is blue3
*/
@lombok.Getter @lombok.Setter private int fieldName;
}
|