Creates a new instance of MoodItem
(int index)
| 45 | |
| 46 | /** Creates a new instance of MoodItem */ |
| 47 | public MoodItem(int index) { |
| 48 | super(MoodIcons.getInstance()); |
| 49 | |
| 50 | label=Moods.getInstance().getMoodLabel(index); |
| 51 | name=Moods.getInstance().getMoodName(index); |
| 52 | iconIndex=index; |
| 53 | } |
| 54 | |
| 55 | public int getImageIndex() { return iconIndex; } |
| 56 | public int getColor() { return ColorTheme.getColor(ColorTheme.CONTACT_DEFAULT); } |
nothing calls this directly
no test coverage detected