--- old/core/JemmyAWTInput/src/org/jemmy/input/AWTMap.java 2018-05-20 10:11:38.940444906 +0200 +++ new/core/JemmyAWTInput/src/org/jemmy/input/AWTMap.java 2018-05-20 10:11:38.882443135 +0200 @@ -43,7 +43,7 @@ /** * Converts - * @author Alexander Kouznetsov + * @author mrkam */ public class AWTMap { @@ -129,7 +129,7 @@ /** * TODO Provide javadoc - * @param button + * @param button todo document * @return One of InputEvent.VK_* constants * @see InputEvent */ @@ -141,11 +141,6 @@ } } - /** - * TODO Provide javadoc - * @param modifiers - * @return - */ public int convert(Modifier... modifiers) { int result = 0; for (Modifier modifier : modifiers) { @@ -158,11 +153,6 @@ return result; } - /** - * TODO Provide javadoc - * @param button - * @return - */ public int convert(MouseButton button) { try { return button2int.get(button); @@ -171,11 +161,6 @@ } } - /** - * TODO Provide javadoc - * @param key - * @return - */ public KeyboardButton convertKeyboardButton(int key) { KeyboardButton res = int2key.get(key); if (res == null) { @@ -184,11 +169,6 @@ return res; } - /** - * TODO Provide javadoc - * @param modifiers - * @return - */ public Modifier[] convertModifiers(int modifiers) { List result = new ArrayList(); for (int key : int2modifier.keySet()) { @@ -203,11 +183,6 @@ return result.toArray(new Modifier[result.size()]); } - /** - * TODO Provide javadoc - * @param button - * @return - */ public MouseButton convertMouseButton(int button) { MouseButton res = int2button.get(button); if (res == null) {