attributes nullable

This commit is contained in:
Ezequiel Bergamaschi
2014-02-10 00:58:19 -03:00
parent 1a31e5ee99
commit b110d338af
3 changed files with 46 additions and 14 deletions

View File

@@ -31,7 +31,7 @@ public class Label {
return creator;
}
@NotNull
@Nullable
public String getTitle() {
return title;
}

View File

@@ -44,6 +44,7 @@ public class RestLabel {
return this.label.getParent();
}
@Nullable
public String getTitle() {
return this.label.getTitle();
}
@@ -64,7 +65,7 @@ public class RestLabel {
label.setColor(color);
}
@NotNull public String getColor() {
@Nullable public String getColor() {
return label.getColor();
}