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