Examples of SWTBotCTabItem


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

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

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

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

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

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

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

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

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

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

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

   * @return a {@link SWTBotCTabItem} with the specified <code>mnemonicText</code> with the specified <code>inGroup</code>.
   */
  @SuppressWarnings("unchecked")
  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);
  }
View Full Code Here

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

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

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

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

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

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

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

   * @return a {@link SWTBotCTabItem} with the specified <code>inGroup</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCTabItem cTabItemInGroup(String inGroup, int index) {
    Matcher matcher = allOf(widgetOfType(CTabItem.class), inGroup(inGroup));
    return new SWTBotCTabItem((CTabItem) 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.