mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
generate public getter/setter for abstract classes (IDEA-102872)
(cherry picked from commit 61685b9d890fce99c050e1b98261527b7a0e9363)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Create setter for 's'" "true"
|
||||
public abstract class A {
|
||||
private String s;
|
||||
|
||||
public void setS(String s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// "Create setter for 's'" "true"
|
||||
public abstract class A {
|
||||
private String <caret>s;
|
||||
}
|
||||
Reference in New Issue
Block a user