final HorizontalLayout ol2 = new HorizontalLayout();
final VerticalLayout statusLayout = new VerticalLayout();
final Panel status = new Panel("Events", statusLayout);
final Button clear = new Button("clear event log");
clear.addClickListener(new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
statusLayout.removeAllComponents();
statusLayout.addComponent(ol2);
}