Examples of StringResult


Examples of net.sf.swtbot.finder.UIThreadRunnable.StringResult

   * @return the cell at the location specified by the row and column
   */
  public String cell(final int row, final int column) {
    assertIsLegalCell(row, column);

    return syncExec(new StringResult() {
      public String run() {
        TableItem item = getControl().getItem(row);
        return item.getText(column);
      }
    });
View Full Code Here

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

    if (column == 0) {
      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

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

   *
   * @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

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

   * 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

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

   *
   * @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

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

    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

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

      }
    });
  }

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

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

   *
   * @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

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

    Assert.isLegal(row < rowCount, "The row number (" + row + ") is more than the number of rows(" + rowCount + ") in the tree."); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
    Assert.isLegal(column < columnCount, "The column number (" + column + ") is more than the number of column(" + columnCount //$NON-NLS-1$ //$NON-NLS-2$
        + ") in the tree."); //$NON-NLS-1$

    return syncExec(new StringResult() {
      public String run() {
        TreeItem item = widget.getItem(row);
        return item.getText(column);
      }
    });
View Full Code Here

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

   *
   * @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
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.