Package org.netbeans.jemmy.operators
Interface JScrollBarOperator.ScrollChecker
-
- Enclosing class:
- JScrollBarOperator
public static interface JScrollBarOperator.ScrollChecker
Interface can be used to define some kind of complicated scrolling rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Scrolling rules decription.int
getScrollDirection(JScrollBarOperator oper)
Defines a scrolling direction.
-
-
-
Method Detail
-
getScrollDirection
int getScrollDirection(JScrollBarOperator oper)
Defines a scrolling direction.- Parameters:
oper
- an operator- Returns:
- one of the following values:
ScrollAdjuster.INCREASE_SCROLL_DIRECTION
ScrollAdjuster.DECREASE_SCROLL_DIRECTION
ScrollAdjuster.DO_NOT_TOUCH_SCROLL_DIRECTION - See Also:
ScrollAdjuster.INCREASE_SCROLL_DIRECTION
,ScrollAdjuster.DECREASE_SCROLL_DIRECTION
,ScrollAdjuster.DO_NOT_TOUCH_SCROLL_DIRECTION
-
getDescription
java.lang.String getDescription()
Scrolling rules decription.- Returns:
- a description
-
-