Examples of SWTBotTabItem


Examples of net.sf.swtbot.widgets.SWTBotTabItem

   * @param tabText the text on the tab.
   * @return a wrapper around a TabItem with the specified text.
   * @throws WidgetNotFoundException if the widget is not found.
   */
  public SWTBotTabItem tabItem(String tabText) throws WidgetNotFoundException {
    return new SWTBotTabItem(finder, tabText);
  }
View Full Code Here

Examples of net.sf.swtbot.widgets.SWTBotTabItem

   * @param tabText the text on the tab.
   * @return a wrapper around a TabItem with the specified text.
   * @throws WidgetNotFoundException if the widget is not found.
   */
  public SWTBotTabItem tabItem(String tabText) throws WidgetNotFoundException {
    return new SWTBotTabItem(finder, tabText);
  }
View Full Code Here

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

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

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

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

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

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

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

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

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

   * @return a {@link SWTBotTabItem} with the specified <code>none</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotTabItem tabItem(int index) {
    Matcher matcher = allOf(widgetOfType(TabItem.class));
    return new SWTBotTabItem((TabItem) widget(matcher, index), matcher);
  }
View Full Code Here

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

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

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

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

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

   * @return a {@link SWTBotTabItem} with the specified <code>key/value</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotTabItem tabItemWithId(String key, String value, int index) {
    Matcher matcher = allOf(widgetOfType(TabItem.class), withId(key, value));
    return new SWTBotTabItem((TabItem) 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.