Package net.sf.swtbot.widgets

Examples of net.sf.swtbot.widgets.SWTBotExpandBar


   * @return a wrapper around an tree with the specified label.
   * @throws WidgetNotFoundException if the widget is not found.
   * @since 1.2
   */
  public SWTBotExpandBar expandBarWithLabel(String expandBarLabel) throws WidgetNotFoundException {
    return new SWTBotExpandBar(finder, expandBarLabel);
  }
View Full Code Here


   */
  public SWTBotExpandBar expandBar(int index) throws WidgetNotFoundException {
    List findControls = finder.findControls(new ClassMatcher(ExpandBar.class));
    if (findControls.isEmpty())
      throw new WidgetNotFoundException("Could not find any tree");
    return new SWTBotExpandBar((ExpandBar) findControls.get(index));
  }
View Full Code Here

TOP

Related Classes of net.sf.swtbot.widgets.SWTBotExpandBar

Copyright © 2018 www.massapicom. 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.