Package org.eclipse.swtbot.swt.finder.results

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


   * Gets the current selection in the combo.
   *
   * @return the current selection in the combo box or null if no item is selected.
   */
  public String selection() {
    return syncExec(new StringResult() {
      public String run() {
        int selectionIndex = widget.getSelectionIndex();
        if (selectionIndex == -1)
          return null;
        return widget.getItem(selectionIndex);
View Full Code Here


   * Attempts to select the current item.
   *
   * @return the current selection in the combo box.
   */
  public String selection() {
    return syncExec(new StringResult() {
      public String run() {
        return widget.getItem(widget.getSelectionIndex());
      }
    });
  }
View Full Code Here

   *
   * @return the id that SWTBot may use to search this widget.
   * @see WithId
   */
  public String getId() {
    return syncExec(new StringResult() {
      public String run() {
        return (String) widget.getData(SWTBotPreferences.DEFAULT_KEY);
      }
    });
  }
View Full Code Here

   *
   * @return the tooltip on the widget.
   * @since 1.0
   */
  public String getToolTipText() {
    return syncExec(new StringResult() {
      public String run() {
        return SWTUtils.getToolTipText(widget);
      }
    });
  }
View Full Code Here

   *
   * @param index the zero based index.
   * @return the item at the specified index.
   */
  public String itemAt(final int index) {
    return syncExec(new StringResult() {
      public String run() {
        return widget.getItem(index);
      }
    });
  }
View Full Code Here

      return getText();
    }
    int columnCount = new SWTBotTree(tree).columnCount();
    Assert.isLegal(column < columnCount, java.text.MessageFormat.format(
        "The column index ({0}) is more than the number of column({1}) in the tree.", column, columnCount)); //$NON-NLS-1$
    return syncExec(new StringResult() {
      public String run() {
        return widget.getText(column);
      }
    });
  }
View Full Code Here

   * Gets the current selection text.
   *
   * @return the selection in the styled text
   */
  public String getSelection() {
    return syncExec(new StringResult() {
      public String run() {
        return widget.getSelectionText();
      }
    });
  }
View Full Code Here

   *
   * @param line the line number, 0 based.
   * @return the text on the given line number, without the line delimiters.
   */
  public String getTextOnLine(final int line) {
    return syncExec(new StringResult() {
      public String run() {
        return widget.getContent().getLine(line);
      }
    });
  }
View Full Code Here

    clickXY(cellBounds.x + (cellBounds.width / 2), cellBounds.y + (cellBounds.height / 2));
    return this;
  }

  public String getText() {
    return syncExec(new StringResult() {
      public String run() {
        return widget.getText();
      }
    });
  }
View Full Code Here

      }
    });
  }

  public String getText(final int index) {
    return syncExec(new StringResult() {
      public String run() {
        return widget.getText(index);
      }
    });
  }
View Full Code Here

TOP

Related Classes of org.eclipse.swtbot.swt.finder.results.StringResult

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.