Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
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
Paul-Christian Volkmer
ARSnova Backend
Commits
4b0c026a
There was an error fetching the commit references. Please try again later.
Commit
4b0c026a
authored
9 years ago
by
Andreas Gärtner
Browse files
Options
Downloads
Patches
Plain Diff
Task #17373: Add "Twitter Wall" use case to SessionFeature entity
parent
e02691d1
No related merge requests found
Changes
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 @
4b0c026a
...
...
@@ -31,6 +31,7 @@ public class SessionFeature implements Serializable {
private
boolean
custom
=
true
;
private
boolean
clicker
=
false
;
private
boolean
peerGrading
=
false
;
private
boolean
twitterWall
=
false
;
private
boolean
liveFeedback
=
false
;
private
boolean
interposedFeedback
=
false
;
private
boolean
liveClicker
=
false
;
...
...
@@ -50,6 +51,7 @@ public class SessionFeature implements Serializable {
this
.
custom
=
features
.
custom
;
this
.
clicker
=
features
.
clicker
;
this
.
peerGrading
=
features
.
peerGrading
;
this
.
twitterWall
=
features
.
twitterWall
;
this
.
liveFeedback
=
features
.
liveFeedback
;
this
.
interposedFeedback
=
features
.
interposedFeedback
;
this
.
liveClicker
=
features
.
liveClicker
;
...
...
@@ -183,4 +185,12 @@ public class SessionFeature implements Serializable {
this
.
liveClicker
=
liveClicker
;
}
public
boolean
isTwitterWall
()
{
return
twitterWall
;
}
public
void
setTwitterWall
(
boolean
twitterWall
)
{
this
.
twitterWall
=
twitterWall
;
}
}
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