protected void populateItemInternal(ListItem<String> item)
{
item.add(new Label("label", item.getModel()));
}});
final DraggableTarget cart = new DraggableTarget("cart") {
@Override
protected void onDrop(Component component, AjaxRequestTarget target)
{
System.out.println("Input: " + component + " was dropped on the DraggableTarget");
}