Skip to content

Commit

Permalink
V3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Aug 29, 2016
1 parent d5a5189 commit de411f1
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 13 deletions.
2 changes: 1 addition & 1 deletion DaoCore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'signing'

group = 'org.greenrobot'
archivesBaseName = 'greendao'
version = '3.1.0'
version = '3.1.1'
sourceCompatibility = 1.7
targetCompatibility = 1.7

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.greenrobot:greendao-gradle-plugin:3.1.0'
classpath 'org.greenrobot:greendao-gradle-plugin:3.1.1'
}
}
apply plugin: 'org.greenrobot.greendao'
dependencies {
compile 'org.greenrobot:greendao:3.1.0'
compile 'org.greenrobot:greendao:3.1.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
// common dependencies for Android projects
dep = [
androidPlugin: 'com.android.tools.build:gradle:2.1.3',
greendaoPlugin: 'org.greenrobot:greendao-gradle-plugin:3.1.0',
greendaoPlugin: 'org.greenrobot:greendao-gradle-plugin:3.1.1',
appcompat: 'com.android.support:appcompat-v7:23.4.0',
recyclerview: 'com.android.support:recyclerview-v7:23.4.0'
]
Expand Down
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.1-SNAPSHOT'
version = '3.1.1'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ public class NotNullThing {

@Generated(hash = 1109392169)
public NotNullThing(Long id, boolean nullableBoolean, int nullableInteger,
Boolean nullableWrappedBoolean, Integer nullableWrappedInteger,
boolean notNullBoolean, int notNullInteger,
@NotNull Boolean notNullWrappedBoolean,
@NotNull Integer notNullWrappedInteger) {
Boolean nullableWrappedBoolean, Integer nullableWrappedInteger,
boolean notNullBoolean, int notNullInteger,
@NotNull Boolean notNullWrappedBoolean,
@NotNull Integer notNullWrappedInteger) {
this.id = id;
this.nullableBoolean = nullableBoolean;
this.nullableInteger = nullableInteger;
Expand All @@ -41,60 +41,79 @@ public NotNullThing(Long id, boolean nullableBoolean, int nullableInteger,
this.notNullWrappedBoolean = notNullWrappedBoolean;
this.notNullWrappedInteger = notNullWrappedInteger;
}

@Generated(hash = 521031743)
public NotNullThing() {
}

public Long getId() {
return this.id;
}

public void setId(Long id) {
this.id = id;
}

public boolean getNullableBoolean() {
return this.nullableBoolean;
}

public void setNullableBoolean(boolean nullableBoolean) {
this.nullableBoolean = nullableBoolean;
}

public int getNullableInteger() {
return this.nullableInteger;
}

public void setNullableInteger(int nullableInteger) {
this.nullableInteger = nullableInteger;
}

public Boolean getNullableWrappedBoolean() {
return this.nullableWrappedBoolean;
}

public void setNullableWrappedBoolean(Boolean nullableWrappedBoolean) {
this.nullableWrappedBoolean = nullableWrappedBoolean;
}

public Integer getNullableWrappedInteger() {
return this.nullableWrappedInteger;
}

public void setNullableWrappedInteger(Integer nullableWrappedInteger) {
this.nullableWrappedInteger = nullableWrappedInteger;
}

public boolean getNotNullBoolean() {
return this.notNullBoolean;
}

public void setNotNullBoolean(boolean notNullBoolean) {
this.notNullBoolean = notNullBoolean;
}

public int getNotNullInteger() {
return this.notNullInteger;
}

public void setNotNullInteger(int notNullInteger) {
this.notNullInteger = notNullInteger;
}

public Boolean getNotNullWrappedBoolean() {
return this.notNullWrappedBoolean;
}

public void setNotNullWrappedBoolean(Boolean notNullWrappedBoolean) {
this.notNullWrappedBoolean = notNullWrappedBoolean;
}

public Integer getNotNullWrappedInteger() {
return this.notNullWrappedInteger;
}

public void setNotNullWrappedInteger(Integer notNullWrappedInteger) {
this.notNullWrappedInteger = notNullWrappedInteger;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,14 @@ public Long convertToDatabaseValue(MyInnerType entityProperty) {
@Id
Long id;

// FIXME Remove "TypesInInnerClass."
@Convert(converter = TypesInInnerClass.MyInnerTypeConverter.class, columnType = Long.class)
@Convert(converter = MyInnerTypeConverter.class, columnType = Long.class)
TypesInInnerClass.MyInnerType type;

public MyInnerType getType() {
return this.type;
}

// FIXME Remove "TypesInInnerClass."
public void setType(TypesInInnerClass.MyInnerType type) {
public void setType(MyInnerType type) {
this.type = type;
}

Expand Down

0 comments on commit de411f1

Please sign in to comment.