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

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


   * Return the minimum value the scale will accept.
   *
   * @return the minimum of the scale.
   */
  public int getMinimum() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getMinimum();
      }
    });
  }
View Full Code Here


   * Return the increment of the scale.
   *
   * @return the increment of the scale.
   */
  public int getIncrement() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getIncrement();
      }
    });
  }
View Full Code Here

   * Return the page increment of the scale.
   *
   * @return the increment of the scale.
   */
  public int getPageIncrement() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getPageIncrement();
      }
    });
  }
View Full Code Here

   * Return the current value of the slider.
   *
   * @return the current selection in the slider.
   */
  public int getSelection() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getSelection();
      }
    });
  }
View Full Code Here

   * Return the maximum value the slider will accept.
   *
   * @return the maximum of the slider.
   */
  public int getMaximum() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getMaximum();
      }
    });
  }
View Full Code Here

   * Return the minimum value the slider will accept.
   *
   * @return the minimum of the slider.
   */
  public int getMinimum() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getMinimum();
      }
    });
  }
View Full Code Here

   * Return the increment of the slider.
   *
   * @return the increment of the slider.
   */
  public int getIncrement() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getIncrement();
      }
    });
  }
View Full Code Here

   * Return the page increment of the slider.
   *
   * @return the increment of the slider.
   */
  public int getPageIncrement() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getPageIncrement();
      }
    });
  }
View Full Code Here

   * Return the size of the thumb of the slider.
   *
   * @return the size of the thumb of the slider.
   */
  public int getThumb() {
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getThumb();
      }
    });
  }
View Full Code Here

   * Gets the number of lines in the {@link StyledText}.
   *
   * @return the number of lines in the {@link StyledText}.
   */
  public int getLineCount(){
    return syncExec(new IntResult() {
      public Integer run() {
        return widget.getLineCount();
      }
    });
  }
View Full Code Here

TOP

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

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.