blob: e6f5ab75029e78010dd4645c540a92af96e822d1 (
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
|
class SetterWitherJavadocParamCopy {
/**
* Some text
*/
private int fieldName;
public SetterWitherJavadocParamCopy(int f) {
this.fieldName = f;
}
/**
* Some text
*
* @param fieldName Hello, World1
*/
@java.lang.SuppressWarnings("all")
public void setFieldName(final int fieldName) {
this.fieldName = fieldName;
}
/**
* Some text
*
* @param fieldName Hello, World1
*/
@java.lang.SuppressWarnings("all")
public SetterWitherJavadocParamCopy withFieldName(final int fieldName) {
return this.fieldName == fieldName ? this : new SetterWitherJavadocParamCopy(fieldName);
}
}
|