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