Chris K Wensel
- Total activity 4
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
Created Using setters in Generate Constructor
Is there a way to tell IDEA to use setters when generating constructors?for example:public Foo( String value ) { setValue( value ); }instead of:public Foo( String value ) { this.value = value;...