final class SearchBoxItemRenderer implements ListitemRenderer {
@Override
public void render(Listitem item, Object data) throws Exception {
YoutubeLink youtubeLink = (YoutubeLink) data;
Listcell lc;
lc = new Listcell(youtubeLink.getInterpret());
lc.setParent(item);
lc = new Listcell(youtubeLink.getTitle());
lc.setParent(item);
item.setAttribute("data", data);
ComponentsCtrl.applyForward(item, "onDoubleClick=onDoubleClicked");
}