int iteration = item.getIteration();
// add the star image, which is either active (highlighted) or
// inactive (no star)
link.add(new WebMarkupContainer("star").add(new SimpleAttributeModifier("src",
(onIsStarActive(iteration)
? getActiveStarUrl(iteration)
: getInactiveStarUrl(iteration)))));
item.add(link);
}