* @return a {@link SWTBotCheckBox} with the specified <code>mnemonicText</code> with the specified <code>inGroup</code>.
*/
@SuppressWarnings("unchecked")
public SWTBotCheckBox checkBoxInGroup(String mnemonicText, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(Button.class), withMnemonic(mnemonicText), inGroup(inGroup), withStyle(SWT.CHECK, "SWT.CHECK")); //$NON-NLS-1$
return new SWTBotCheckBox((Button) widget(matcher, index), matcher);
}