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
feef1cba
Commit
feef1cba
authored
8 years ago
by
Andreas Gärtner
Browse files
Options
Downloads
Patches
Plain Diff
Add 'flashcards' as separate session feature
parent
e44758f1
Branches
Branches containing commit
Tags
Tags containing commit
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 @
feef1cba
...
@@ -44,6 +44,7 @@ public class SessionFeature implements Serializable {
...
@@ -44,6 +44,7 @@ public class SessionFeature implements Serializable {
private
boolean
interposed
=
true
;
private
boolean
interposed
=
true
;
private
boolean
pi
=
true
;
private
boolean
pi
=
true
;
private
boolean
learningProgress
=
true
;
private
boolean
learningProgress
=
true
;
private
boolean
flashcardFeature
=
true
;
private
boolean
slides
=
false
;
private
boolean
slides
=
false
;
public
SessionFeature
(
SessionFeature
features
)
{
public
SessionFeature
(
SessionFeature
features
)
{
...
@@ -56,6 +57,7 @@ public class SessionFeature implements Serializable {
...
@@ -56,6 +57,7 @@ public class SessionFeature implements Serializable {
this
.
liveFeedback
=
features
.
liveFeedback
;
this
.
liveFeedback
=
features
.
liveFeedback
;
this
.
interposedFeedback
=
features
.
interposedFeedback
;
this
.
interposedFeedback
=
features
.
interposedFeedback
;
this
.
liveClicker
=
features
.
liveClicker
;
this
.
liveClicker
=
features
.
liveClicker
;
this
.
flashcardFeature
=
features
.
flashcardFeature
;
this
.
flashcard
=
features
.
flashcard
;
this
.
flashcard
=
features
.
flashcard
;
this
.
total
=
features
.
total
;
this
.
total
=
features
.
total
;
this
.
lecture
=
features
.
lecture
;
this
.
lecture
=
features
.
lecture
;
...
@@ -147,6 +149,14 @@ public class SessionFeature implements Serializable {
...
@@ -147,6 +149,14 @@ public class SessionFeature implements Serializable {
this
.
peerGrading
=
peerGrading
;
this
.
peerGrading
=
peerGrading
;
}
}
public
boolean
isFlashcardFeature
()
{
return
flashcardFeature
;
}
public
void
setFlashcardFeature
(
boolean
flashcardFeature
)
{
this
.
flashcardFeature
=
flashcardFeature
;
}
public
boolean
isFlashcard
()
{
public
boolean
isFlashcard
()
{
return
flashcard
;
return
flashcard
;
}
}
...
...
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