Skip to content
Snippets Groups Projects
Commit d71fa59e authored by Andreas Gärtner's avatar Andreas Gärtner
Browse files

Add new session usecase "interposedFeedback"

parent e0abbeca
No related merge requests found
Pipeline #216 passed with stages
...@@ -32,6 +32,7 @@ public class SessionFeature implements Serializable { ...@@ -32,6 +32,7 @@ public class SessionFeature implements Serializable {
private boolean clicker = false; private boolean clicker = false;
private boolean peerGrading = false; private boolean peerGrading = false;
private boolean liveFeedback = false; private boolean liveFeedback = false;
private boolean interposedFeedback = false;
private boolean liveClicker = false; private boolean liveClicker = false;
private boolean flashcard = false; private boolean flashcard = false;
private boolean total = false; private boolean total = false;
...@@ -50,6 +51,7 @@ public class SessionFeature implements Serializable { ...@@ -50,6 +51,7 @@ public class SessionFeature implements Serializable {
this.clicker = features.clicker; this.clicker = features.clicker;
this.peerGrading = features.peerGrading; this.peerGrading = features.peerGrading;
this.liveFeedback = features.liveFeedback; this.liveFeedback = features.liveFeedback;
this.interposedFeedback = features.interposedFeedback;
this.liveClicker = features.liveClicker; this.liveClicker = features.liveClicker;
this.flashcard = features.flashcard; this.flashcard = features.flashcard;
this.total = features.total; this.total = features.total;
...@@ -165,6 +167,14 @@ public class SessionFeature implements Serializable { ...@@ -165,6 +167,14 @@ public class SessionFeature implements Serializable {
this.liveFeedback = liveFeedback; this.liveFeedback = liveFeedback;
} }
public boolean isInterposedFeedback() {
return interposedFeedback;
}
public void setInterposedFeedback(boolean interposedFeedback) {
this.interposedFeedback = interposedFeedback;
}
public boolean isLiveClicker() { public boolean isLiveClicker() {
return liveClicker; return liveClicker;
} }
......
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