Back to project page CS160-Speech-Tutor.
The source code is released under:
GNU General Public License
If you think the Android project CS160-Speech-Tutor listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.speechtutor; //from ww w. j a v a 2 s . c om import java.util.ArrayList; import java.util.HashMap; public class RecordingData implements java.io.Serializable { public HashMap<String, Integer> recordingUmCount; public HashMap<String, Integer> recordingUhCount; public HashMap<String, Integer> recordingErCount; public HashMap<String, Integer> recordingAhCount; public HashMap<String, Integer> recordingLikeCount; public HashMap<String, Integer> recordingYouKnowCount; public HashMap<String, Integer> recordingFillerWordCount; public HashMap<String, String> recordingTime; //the length of recording public RecordingData() { recordingFillerWordCount = new HashMap<String, Integer>(); recordingTime = new HashMap<String,String >(); recordingUmCount = new HashMap<String, Integer>(); recordingUhCount = new HashMap<String, Integer>(); recordingErCount = new HashMap<String, Integer>(); recordingAhCount = new HashMap<String, Integer>(); recordingLikeCount = new HashMap<String, Integer>(); recordingYouKnowCount = new HashMap<String, Integer>(); } }