--- old/core/JemmyCore/src/org/jemmy/interfaces/Caret.java 2018-05-20 10:11:56.249973134 +0200 +++ new/core/JemmyCore/src/org/jemmy/interfaces/Caret.java 2018-05-20 10:11:56.191971364 +0200 @@ -31,25 +31,15 @@ * @author shura */ public interface Caret { - /** - * @deprecated this is moved to CaretOwner - * @param value - */ + + @Deprecated 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 + * @return < 0 to scroll toward decreasing value, > 0 - vice versa 0 to stop scrolling */ public int to(); }