--- old/core/JemmyCore/src/org/jemmy/input/ClickFocus.java 2018-05-20 10:11:53.679894704 +0200 +++ new/core/JemmyCore/src/org/jemmy/input/ClickFocus.java 2018-05-20 10:11:53.623892995 +0200 @@ -30,6 +30,8 @@ /** * Simple Focus implementation which clicks on a control to give focus. + * @param the control type + * * @author shura */ public class ClickFocus implements Focus { @@ -38,10 +40,10 @@ Point clickPoint; /** - * * @param topControl a control to click on. Node that this could be * a control itself (the one we're giving the focus to) or a subcontrol * of it. + * @param clickPoint the point to click */ public ClickFocus(Wrap topControl, Point clickPoint) { this.topControl = topControl; @@ -57,7 +59,7 @@ } /** - * @{@inheritDoc} + * {@inheritDoc} */ public void focus() { if (clickPoint == null) {