else if (SWTUtils.hasStyle(item, SWT.CHECK))
l.add(new SWTBotToolbarToggleButton(item));
else if (SWTUtils.hasStyle(item, SWT.RADIO))
l.add(new SWTBotToolbarRadioButton(item));
else if (SWTUtils.hasStyle(item, SWT.DROP_DOWN))
l.add(new SWTBotToolbarDropDownButton(item));
else if (SWTUtils.hasStyle(item, SWT.SEPARATOR))
l.add(new SWTBotToolbarSeparatorButton(item));
} catch (WidgetNotFoundException e) {
e.printStackTrace();
}