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