mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
11 lines
209 B
Java
11 lines
209 B
Java
class AccessorsMakeFinal {
|
|
private String test;
|
|
/**
|
|
* @return {@code this}.
|
|
*/
|
|
@SuppressWarnings("all")
|
|
public final AccessorsMakeFinal test(final String test) {
|
|
this.test = test;
|
|
return this;
|
|
}
|
|
} |