--- old/core/JemmyCore/src/org/jemmy/interfaces/Window.java 2018-05-20 10:12:01.616136892 +0200 +++ new/core/JemmyCore/src/org/jemmy/interfaces/Window.java 2018-05-20 10:12:01.557135091 +0200 @@ -35,39 +35,16 @@ */ public interface Window extends ControlInterface { - /** - * - */ public enum Direction { - - /** - * - */ NORTHEAST, - /** - * - */ SOUTHEAST, - /** - * - */ SOUTHWEST, - /** - * - */ NORTHWEST }; - /** - * - * @param dest - */ + @Shortcut public void move(Point dest); - /** - * - * @param size - * @param direction - */ + @Shortcut public void resize(Dimension size, Direction direction); }