< prev index next >

core/JemmyCore/src/org/jemmy/interfaces/Caret.java

Print this page

        

*** 29,56 **** * Responsible for "scrolling" * @see Scroll * @author shura */ public interface Caret { ! /** ! * @deprecated this is moved to CaretOwner ! * @param value ! */ public void to(double value); - /** - * - * @param condition - */ public void to(Direction condition); - /** - * - */ public interface Direction { /** ! * @return < 0 to scroll toward decreasing value, > 0 - vice versa ! * 0 to stop scrolling */ public int to(); } } --- 29,46 ---- * Responsible for "scrolling" * @see Scroll * @author shura */ public interface Caret { ! ! @Deprecated public void to(double value); public void to(Direction condition); public interface Direction { /** ! * @return &lt; 0 to scroll toward decreasing value, &gt; 0 - vice versa 0 to stop scrolling */ public int to(); } }
< prev index next >