mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-20 09:09:20 +07:00
b95a271d12
(cherry picked from commit bb95544d55937ef04d739a4c01839280a4eefb67)
13 lines
203 B
Java
13 lines
203 B
Java
// "Create getter for '_i'" "true"
|
|
public enum TestEnum {
|
|
;
|
|
private final int _i;
|
|
|
|
private TestEnum(int _i) {
|
|
this._i = _i;
|
|
}
|
|
|
|
private int get_i() {
|
|
return _i;
|
|
}
|
|
} |