generate public getter/setter for abstract classes (IDEA-102872)

(cherry picked from commit 61685b9d890fce99c050e1b98261527b7a0e9363)
This commit is contained in:
anna
2013-03-11 18:44:27 +01:00
parent bc5c90ccc8
commit 7f1f607d98
5 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
// "Create setter for 's'" "true"
public abstract class A {
private String s;
public void setS(String s) {
this.s = s;
}
}

View File

@@ -0,0 +1,4 @@
// "Create setter for 's'" "true"
public abstract class A {
private String <caret>s;
}