unwatchBranchItem.setText(getUnwatchClsLabel());
unwatchBranchItem.setCls("toolbar-button");
watchButton.addItem(unwatchBranchItem);
//the listener is needed to override behavior of cycle button
CheckItemListener checkItemListener = new CheckItemListenerAdapter() {
@Override
public boolean doBeforeCheckChange(CheckItem item, boolean checked) {
return false;
}
};