Examples of BoolResult


Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

   *
   * @return <code>true</code> if the widget is visible, <code>false</code> otherwise.
   * @since 1.0
   */
  public boolean isVisible() {
    return syncExec(new BoolResult() {
      public Boolean run() {
        if (widget instanceof Control)
          return ((Control) widget).isVisible();
        return true;
      }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

    if (!(widget instanceof Control))
      throw new UnsupportedOperationException("Can only traverse widgets of type Control. You're traversing a widget of type: " //$NON-NLS-1$
          + widget.getClass().getName());

    return syncExec(new BoolResult() {
      public Boolean run() {
        return ((Control) widget).traverse(traverse.type);
      }
    });
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

  /**
   * @return <code>true</code> if this widget has focus.
   * @see Display#getFocusControl()
   */
  public boolean isActive() {
    return syncExec(new BoolResult() {
      public Boolean run() {
        return display.getFocusControl() == widget;
      }
    });
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

   *
   * @return <code>true</code> if the checkbox is checked. Otherwise <code>false</code>.
   */
  public boolean isChecked() {
    assertIsCheck();
    return syncExec(new BoolResult() {
      public Boolean run() {
        return widget.getChecked();
      }
    });
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

   *
   * @return <code>true</code> if the checkbox is grayed, <code>false</code> otherwise.
   */
  public boolean isGrayed() {
    assertIsCheck();
    return syncExec(new BoolResult() {
      public Boolean run() {
        return widget.getGrayed();
      }
    });
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

    return this;
  }

  @Override
  public boolean isEnabled() {
    return syncExec(new BoolResult() {
      public Boolean run() {
        return widget.isEnabled();
      }
    });
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

    return new SWTBotMenu(menuItem, matcher);
  }

  @Override
  public boolean isEnabled() {
    return syncExec(new BoolResult() {
      public Boolean run() {
        return widget.isEnabled();
      }
    });
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

   * @return <code>true</code> if the menu is checked, <code>false</code> otherwise.
   * @see MenuItem#getSelection()
   * @since 1.2
   */
  public boolean isChecked() {
    return syncExec(new BoolResult() {
      public Boolean run() {
        return widget.getSelection();
      }
    });
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

   * @return <code>true</code> if the checkbox is checked. Otherwise <code>false</code>.
   * @since 1.3
   */
  public boolean isChecked() {
    assertIsCheck();
    return syncExec(new BoolResult() {
      public Boolean run() {
        return widget.getChecked();
      }
    });
  }
View Full Code Here

Examples of org.eclipse.swtbot.swt.finder.results.BoolResult

  /**
   * @return <code>true</code> if the item is selected, false otherwise.
   * @since 2.0
   */
  public boolean isSelected() {
    return UIThreadRunnable.syncExec(new BoolResult() {
      public Boolean run() {
        return Arrays.asList(tree.getSelection()).contains(widget);
      }
    });
  }
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.