< prev index next >

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

Print this page

        

*** 33,62 **** * 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 Scroll extends CaretOwner { ! /** ! * ! */ public static final String VERTICAL_PROP_NAME = "vertical"; - /** - * - */ public static final String MAXIMUM_PROP_NAME = "maximum"; - /** - * - */ public static final String MINIMUM_PROP_NAME = "minimum"; ! /** ! * TODO javadoc ! * @return ! */ @Property(MAXIMUM_PROP_NAME) public double maximum(); ! /** ! * ! * @return ! */ @Property(MINIMUM_PROP_NAME) public double minimum(); } --- 33,48 ---- * 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 Scroll extends CaretOwner { ! public static final String VERTICAL_PROP_NAME = "vertical"; public static final String MAXIMUM_PROP_NAME = "maximum"; public static final String MINIMUM_PROP_NAME = "minimum"; ! @Property(MAXIMUM_PROP_NAME) public double maximum(); ! @Property(MINIMUM_PROP_NAME) public double minimum(); }
< prev index next >