< prev index next >

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

Print this page

        

*** 36,63 **** * Interface representing an object which represents an integer value which * could be increased or decreased, such as scroll bar, slider, etc. * @author shura */ public interface CaretOwner extends ControlInterface { ! /** ! * ! * @return ! */ @Property(Wrap.VALUE_PROP_NAME) public double position(); ! /** ! * ! * @return ! */ @Shortcut public Caret caret(); /** * Utility method that invokes caret().to(Direction) with correct * direction. * TODO: Remove this method. ! * @param position */ @Shortcut public void to(double position); } --- 36,57 ---- * Interface representing an object which represents an integer value which * could be increased or decreased, such as scroll bar, slider, etc. * @author shura */ public interface CaretOwner extends ControlInterface { ! @Property(Wrap.VALUE_PROP_NAME) public double position(); ! @Shortcut public Caret caret(); /** * Utility method that invokes caret().to(Direction) with correct * direction. * TODO: Remove this method. ! * @param position the position */ @Shortcut public void to(double position); }
< prev index next >