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