< prev index next >

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

Print this page

        

@@ -36,28 +36,22 @@
  * 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
+     * @param position the position
      */
     @Shortcut
     public void to(double position);
 
 }
< prev index next >