CheckBox clickNotificationCB = new CheckBox("Notify clicks");
clickNotificationCB.setImmediate(true);
clickNotificationCB
.setDescription("Make new notification when notification made by these buttons are clicked.");
optionLayout.addComponent(clickNotificationCB);
clickNotificationCB
.addValueChangeListener(new Property.ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
clickNotifications = (Boolean) event.getProperty()