Skip to content

Commit

Permalink
Merge remote-tracking branch 'github-team/getters-setters-flag'
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Aug 24, 2016
2 parents b6a24e4 + a30f3ee commit d5a5189
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion greendao-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'java'

group = 'org.greenrobot'
version = '3.1.0'
version = '3.1.1-SNAPSHOT'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,13 @@
boolean active() default false;

/**
* Whether constructors should be generated.
* Whether an all properties constructor should be generated. A no-args constructor is always required.
*/
boolean generateConstructors() default true;

/**
* Whether getters and setters for properties should be generated if missing.
*/
boolean generateGettersSetters() default true;

}

0 comments on commit d5a5189

Please sign in to comment.