Examples of SWTBotToolbarDropDownButton


Examples of net.sf.swtbot.widgets.SWTBotToolbarDropDownButton

   * @return a wrapper around the toolbar drop down button with the specified text.
   * @throws WidgetNotFoundException if the widget is not found.
   * @since 1.2
   */
  public SWTBotToolbarDropDownButton toolbarDropDownButton(String text) throws WidgetNotFoundException {
    return new SWTBotToolbarDropDownButton(finder, text);
  }
View Full Code Here

Examples of net.sf.swtbot.widgets.SWTBotToolbarDropDownButton

   * @return a wrapper around the toolbar drop down button with the specified text.
   * @throws WidgetNotFoundException if the widget is not found.
   * @since 1.2
   */
  public SWTBotToolbarDropDownButton toolbarDropDownButton(String text, int index) throws WidgetNotFoundException {
    return new SWTBotToolbarDropDownButton(finder, text, index);
  }
View Full Code Here

Examples of net.sf.swtbot.widgets.SWTBotToolbarDropDownButton

   * @return a wrapper around the toolbar drop down button with the specified text.
   * @throws WidgetNotFoundException if the widget is not found.
   * @since 1.2
   */
  public SWTBotToolbarDropDownButton toolbarDropDownButton(String text) throws WidgetNotFoundException {
    return new SWTBotToolbarDropDownButton(finder, text);
  }
View Full Code Here

Examples of net.sf.swtbot.widgets.SWTBotToolbarDropDownButton

   * @return a wrapper around the toolbar drop down button with the specified text.
   * @throws WidgetNotFoundException if the widget is not found.
   * @since 1.2
   */
  public SWTBotToolbarDropDownButton toolbarDropDownButton(String text, int index) throws WidgetNotFoundException {
    return new SWTBotToolbarDropDownButton(finder, text, index);
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.widgets.SWTBotToolbarDropDownButton

   * @return a {@link SWTBotToolbarDropDownButton} with the specified <code>mnemonicText</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotToolbarDropDownButton toolbarDropDownButton(String mnemonicText, int index) {
    Matcher matcher = allOf(widgetOfType(ToolItem.class), withMnemonic(mnemonicText), withStyle(SWT.DROP_DOWN, "SWT.DROP_DOWN"));
    return new SWTBotToolbarDropDownButton((ToolItem) widget(matcher, index), matcher);
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.widgets.SWTBotToolbarDropDownButton

   * @return a {@link SWTBotToolbarDropDownButton} with the specified <code>tooltip</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotToolbarDropDownButton toolbarDropDownButtonWithTooltip(String tooltip, int index) {
    Matcher matcher = allOf(widgetOfType(ToolItem.class), withTooltip(tooltip), withStyle(SWT.DROP_DOWN, "SWT.DROP_DOWN"));
    return new SWTBotToolbarDropDownButton((ToolItem) widget(matcher, index), matcher);
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.widgets.SWTBotToolbarDropDownButton

   * @return a {@link SWTBotToolbarDropDownButton} with the specified <code>key/value</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotToolbarDropDownButton toolbarDropDownButtonWithId(String key, String value, int index) {
    Matcher matcher = allOf(widgetOfType(ToolItem.class), withId(key, value), withStyle(SWT.DROP_DOWN, "SWT.DROP_DOWN"));
    return new SWTBotToolbarDropDownButton((ToolItem) widget(matcher, index), matcher);
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.widgets.SWTBotToolbarDropDownButton

   * @return a {@link SWTBotToolbarDropDownButton} with the specified <code>value</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotToolbarDropDownButton toolbarDropDownButtonWithId(String value, int index) {
    Matcher matcher = allOf(widgetOfType(ToolItem.class), withId(value), withStyle(SWT.DROP_DOWN, "SWT.DROP_DOWN"));
    return new SWTBotToolbarDropDownButton((ToolItem) widget(matcher, index), matcher);
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.widgets.SWTBotToolbarDropDownButton

   * @return a {@link SWTBotToolbarDropDownButton} with the specified <code>inGroup</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotToolbarDropDownButton toolbarDropDownButtonInGroup(String inGroup, int index) {
    Matcher matcher = allOf(widgetOfType(ToolItem.class), inGroup(inGroup), withStyle(SWT.DROP_DOWN, "SWT.DROP_DOWN"));
    return new SWTBotToolbarDropDownButton((ToolItem) widget(matcher, index), matcher);
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.widgets.SWTBotToolbarDropDownButton

   * @return a {@link SWTBotToolbarDropDownButton} with the specified <code>none</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotToolbarDropDownButton toolbarDropDownButton(int index) {
    Matcher matcher = allOf(widgetOfType(ToolItem.class), withStyle(SWT.DROP_DOWN, "SWT.DROP_DOWN"));
    return new SWTBotToolbarDropDownButton((ToolItem) widget(matcher, index), matcher);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.