Skip to content
Snippets Groups Projects
Commit a1becf0a authored by Christoph Thelen's avatar Christoph Thelen
Browse files

Added missing property

parent 4c622221
No related merge requests found
...@@ -34,6 +34,7 @@ public class Question { ...@@ -34,6 +34,7 @@ public class Question {
private long timestamp; private long timestamp;
private int number; private int number;
private int duration; private int duration;
private boolean showStatistic; // sic
private String _id; private String _id;
private String _rev; private String _rev;
...@@ -141,6 +142,14 @@ public class Question { ...@@ -141,6 +142,14 @@ public class Question {
this.duration = duration; this.duration = duration;
} }
public boolean isShowStatistic() {
return showStatistic;
}
public void setShowStatistic(boolean showStatistic) {
this.showStatistic = showStatistic;
}
public final String get_id() { public final String get_id() {
return _id; return _id;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment