Examples of SWTBotLink


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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