< prev index next >

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

Print this page

        

*** 29,39 **** /** * Lookup that matches all the controls with the bounds that lay inside * the given rectangle. The way to determine bounds of any control is * implemented by the child class in @{@linkplain #getBounds(java.lang.Object)} * method. ! * @param <CONTROL> * @author shura */ public abstract class CoordinateLookup<CONTROL> implements LookupCriteria<CONTROL>{ private Rectangle area; --- 29,39 ---- /** * Lookup that matches all the controls with the bounds that lay inside * the given rectangle. The way to determine bounds of any control is * implemented by the child class in @{@linkplain #getBounds(java.lang.Object)} * method. ! * * @author shura */ public abstract class CoordinateLookup<CONTROL> implements LookupCriteria<CONTROL>{ private Rectangle area;
*** 54,64 **** return area; } /** * ! * @param control * @return logical bounds for the control that has to be inside the given * rectangle to match the lookup */ protected abstract Rectangle getBounds(CONTROL control); --- 54,64 ---- return area; } /** * ! * @param control todo document * @return logical bounds for the control that has to be inside the given * rectangle to match the lookup */ protected abstract Rectangle getBounds(CONTROL control);
< prev index next >