/* Location: Bin */
if (news.getParentId() > 0) {
String location = fMapBinIdToLocation.get(news.getParentId());
if (location == null) {
NewsBinReference ref = new NewsBinReference(news.getParentId());
INewsBin bin = ref.resolve();
location = bin.getName();
fMapBinIdToLocation.put(news.getParentId(), location);
}
return location;