generate visibility setting for create from usage, generate getter/setter/constructor (IDEA-120662, IDEA-64613, IDEA-122025)

This commit is contained in:
Anna Kozlova
2014-04-16 16:42:09 +02:00
parent a850470ed2
commit 199e9d8119
17 changed files with 75 additions and 23 deletions
@@ -1,7 +1,7 @@
class Parent {
Object menu;
Parent(Object menu) {
public Parent(Object menu) {
this.menu = menu;
}
}