* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public SWTBotCheckBox checkBoxWithId(String value, int index) {
Matcher matcher = allOf(widgetOfType(Button.class), withId(value), withStyle(SWT.CHECK, "SWT.CHECK"));
return new SWTBotCheckBox((Button) widget(matcher, index), matcher);
}