Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
ARSnova Backend
Commits
d71fa59e
There was a problem fetching the latest pipeline status.
Commit
d71fa59e
authored
9 years ago
by
Andreas Gärtner
Browse files
Options
Downloads
Patches
Plain Diff
Add new session usecase "interposedFeedback"
parent
e0abbeca
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#216
passed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/entities/SessionFeature.java
+10
-0
10 additions, 0 deletions
src/main/java/de/thm/arsnova/entities/SessionFeature.java
with
10 additions
and
0 deletions
src/main/java/de/thm/arsnova/entities/SessionFeature.java
+
10
−
0
View file @
d71fa59e
...
@@ -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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment