-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from elimu-ai/letter-sound-correspondence-lea…
…rning-event Letter sound correspondence learning event
- Loading branch information
Showing
38 changed files
with
146 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/enums/content/SpellingConsistency.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/gson/analytics/LetterAssessmentEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/gson/analytics/LetterLearningEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
src/main/java/ai/elimu/model/v2/gson/analytics/LetterSoundAssessmentEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
package ai.elimu.model.v2.gson.analytics; | ||
|
||
/** | ||
* For documentation, see https://github.com/elimu-ai/webapp/tree/main/src/main/java/ai/elimu/model | ||
*/ | ||
public class LetterSoundAssessmentEventGson extends AssessmentEventGson { | ||
|
||
private Long letterSoundId; | ||
|
||
private String[] letterSoundLetterTexts; | ||
|
||
private String[] letterSoundSoundValuesIpa; | ||
|
||
private Float masteryScore; | ||
|
||
private Long timeSpentMs; | ||
|
||
public Long getLetterSoundId() { | ||
return letterSoundId; | ||
} | ||
|
||
public void setLetterSoundId(Long letterSoundId) { | ||
this.letterSoundId = letterSoundId; | ||
} | ||
|
||
public String[] getLetterSoundLetterTexts() { | ||
return letterSoundLetterTexts; | ||
} | ||
|
||
public void setLetterSoundLetterTexts(String[] letterSoundLetterTexts) { | ||
this.letterSoundLetterTexts = letterSoundLetterTexts; | ||
} | ||
|
||
public String[] getLetterSoundSoundValuesIpa() { | ||
return letterSoundSoundValuesIpa; | ||
} | ||
|
||
public void setLetterSoundSoundValuesIpa(String[] letterSoundSoundValuesIpa) { | ||
this.letterSoundSoundValuesIpa = letterSoundSoundValuesIpa; | ||
} | ||
|
||
public Float getMasteryScore() { | ||
return masteryScore; | ||
} | ||
|
||
public void setMasteryScore(Float masteryScore) { | ||
this.masteryScore = masteryScore; | ||
} | ||
|
||
public Long getTimeSpentMs() { | ||
return timeSpentMs; | ||
} | ||
|
||
public void setTimeSpentMs(Long timeSpentMs) { | ||
this.timeSpentMs = timeSpentMs; | ||
} | ||
} |
37 changes: 0 additions & 37 deletions
37
...n/java/ai/elimu/model/v2/gson/analytics/LetterSoundCorrespondenceAssessmentEventGson.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
...ain/java/ai/elimu/model/v2/gson/analytics/LetterSoundCorrespondenceLearningEventGson.java
This file was deleted.
Oops, something went wrong.
37 changes: 37 additions & 0 deletions
37
src/main/java/ai/elimu/model/v2/gson/analytics/LetterSoundLearningEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package ai.elimu.model.v2.gson.analytics; | ||
|
||
/** | ||
* For documentation, see https://github.com/elimu-ai/webapp/tree/main/src/main/java/ai/elimu/model | ||
*/ | ||
public class LetterSoundLearningEventGson extends LearningEventGson { | ||
|
||
private Long letterSoundId; | ||
|
||
private String[] letterSoundLetterTexts; | ||
|
||
private String[] letterSoundSoundValuesIpa; | ||
|
||
public Long getLetterSoundId() { | ||
return letterSoundId; | ||
} | ||
|
||
public void setLetterSoundId(Long letterSoundId) { | ||
this.letterSoundId = letterSoundId; | ||
} | ||
|
||
public String[] getLetterSoundLetterTexts() { | ||
return letterSoundLetterTexts; | ||
} | ||
|
||
public void setLetterSoundLetterTexts(String[] letterSoundLetterTexts) { | ||
this.letterSoundLetterTexts = letterSoundLetterTexts; | ||
} | ||
|
||
public String[] getLetterSoundSoundValuesIpa() { | ||
return letterSoundSoundValuesIpa; | ||
} | ||
|
||
public void setLetterSoundSoundValuesIpa(String[] letterSoundSoundValuesIpa) { | ||
this.letterSoundSoundValuesIpa = letterSoundSoundValuesIpa; | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/gson/analytics/NumberAssessmentEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/gson/analytics/NumberLearningEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/gson/analytics/StoryBookLearningEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/gson/analytics/VideoLearningEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/gson/analytics/WordAssessmentEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/ai/elimu/model/v2/gson/analytics/WordLearningEventGson.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.