mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
8 lines
135 B
Java
8 lines
135 B
Java
// "Create getter for 'i'" "true-preview"
|
|
public abstract class E {
|
|
private int i;
|
|
|
|
public int getI() {
|
|
return i;
|
|
}
|
|
} |