mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
13 lines
206 B
Java
13 lines
206 B
Java
// "Create getter for 's'" "true-preview"
|
|
public class A extends Parent{
|
|
private String s;
|
|
|
|
@Override
|
|
public String getS() {
|
|
return s;
|
|
}
|
|
}
|
|
|
|
class Parent {
|
|
public String getS() {}
|
|
} |