* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public SWTBotCTabItem cTabItemInGroup(String mnemonicText, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(CTabItem.class), withMnemonic(mnemonicText), inGroup(inGroup));
return new SWTBotCTabItem((CTabItem) widget(matcher, index), matcher);
}