generate setter prototype from field: take context into account to gic resulted method correct parameter type (IDEA-104592)

This commit is contained in:
anna
2013-04-04 18:33:38 +02:00
parent c730019888
commit f9c121d810
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
// "Create getter and setter for 's'" "false"
class A<T> {
private T <caret>s;
T getS() {
return s;
}
void setS(T s) {
this.s = s;
}
}