< prev index next >

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

Print this page

        

@@ -33,30 +33,16 @@
  * 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();
 }
< prev index next >