< prev index next >

core/JemmyCore/src/org/jemmy/lookup/RelativeCoordinateLookup.java

Print this page

        

@@ -26,12 +26,10 @@
 
 import org.jemmy.Rectangle;
 import org.jemmy.control.Wrap;
 
 /**
- *
- * @param <CONTROL>
  * @author shura
  */
 public abstract class RelativeCoordinateLookup<CONTROL> extends CoordinateLookup<CONTROL> {
 
     private static final int MAX_SCREEN_SIZE = 100000;

@@ -39,29 +37,18 @@
     private Wrap wrap;
     private boolean includeControl;
     private int hr;
     private int vr;
 
-    /**
-     *
-     * @param wrap
-     * @param includeControl
-     * @param hr
-     * @param vr
-     */
     public RelativeCoordinateLookup(Wrap wrap, boolean includeControl, int hr, int vr) {
         super(wrap.getScreenBounds());
         this.wrap = wrap;
         this.includeControl = includeControl;
         this.hr = hr;
         this.vr = vr;
     }
 
-    /**
-     *
-     * @return
-     */
     @Override
     protected Rectangle getArea() {
         return constructArea(wrap, includeControl, hr, vr);
     }
 
< prev index next >