Examples of SWTBotCLabel


Examples of net.sf.swtbot.widgets.SWTBotCLabel

   * @return a wrapper around a CLabel with the specified text.
   * @throws WidgetNotFoundException if the widget is not found.
   * @since 1.0
   */
  public SWTBotCLabel clabel(String labelText) throws WidgetNotFoundException {
    return new SWTBotCLabel(finder, labelText);
  }
View Full Code Here

Examples of net.sf.swtbot.widgets.SWTBotCLabel

   * @return a wrapper around a CLabel with the specified text.
   * @throws WidgetNotFoundException if the widget is not found.
   * @since 1.0
   */
  public SWTBotCLabel clabel(String labelText) throws WidgetNotFoundException {
    return new SWTBotCLabel(finder, labelText);
  }
View Full Code Here

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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