Creates a new instance of MoodList
()
| 32 | /** Creates a new instance of MoodList */ |
| 33 | |
| 34 | public MoodList() { |
| 35 | super(SR.MS_USERMOOD); |
| 36 | |
| 37 | int count=Moods.getInstance().moodValue.size(); |
| 38 | |
| 39 | for (int i=0; i<count; i++) { |
| 40 | itemsList.addElement(new MoodItem(i)); |
| 41 | } |
| 42 | |
| 43 | sort(itemsList); |
| 44 | enableListWrapping(true); |
| 45 | } |
| 46 | |
| 47 | public void cmdOk() { |
| 48 | eventOk(); |
nothing calls this directly
no test coverage detected