mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 06:39:38 +07:00
12 lines
172 B
Java
12 lines
172 B
Java
// "Create Getter" "true"
|
|
public class Test {
|
|
Integer field;
|
|
public foo() {
|
|
getField();
|
|
}
|
|
|
|
public Object getField() {
|
|
return field;
|
|
}
|
|
}
|