mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
14 lines
203 B
Java
14 lines
203 B
Java
enum G {
|
|
VALUE(100),
|
|
REF(VALUE.getG<caret>etGet());
|
|
|
|
private final int myGetGet;
|
|
|
|
G(final int groupNumber) {
|
|
myGetGet = groupNumber;
|
|
}
|
|
|
|
public int getGetGet() {
|
|
return myGetGet;
|
|
}
|
|
} |