96979899100101102103104105106
* 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(); } }); }
109110111112113114115116117118119
* 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(); } }); }
122123124125126127128129130131132
* 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(); } }); }
5455565758596061626364
* 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(); } }); }
8485868788899091929394
* 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(); } }); }
979899100101102103104105106107
* 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(); } }); }
110111112113114115116117118119120
* 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(); } }); }
123124125126127128129130131132133
* 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(); } }); }
136137138139140141142143144145146
* 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(); } }); }
416417418419420421422423424425426
* 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(); } }); }