else
return _playImage;
}
private Image getReadImage(Object obj) {
PodcastItem item = (PodcastItem) obj;
if (item.isRead()) {
if (item.doesTemporaryFileExists()) {
return _podcastCachedReadImage;
} else {
return _podcastReadImage;
}
} else {
if (item.doesTemporaryFileExists()) {
return _podcastCachedUnreadImage;
} else {
return _podcastUnreadImage;
}
}