4849505152535455
public boolean hasChildren() { return ((_itemList != null) && (_itemList.size() > 0)); } public List<IRadioItem> getChildren() { Collections.sort(_itemList, new RadioItemComparator(_sortMode)); return _itemList; }
8586878889909192939495
if ((item.isFavorite()) || (item.hasChildren(true))) { tmpList.add(item); } } Collections.sort(tmpList, new RadioItemComparator(_sortMode)); return tmpList; } else { return this.getChildren(); }