--- old/core/JemmyCore/src/org/jemmy/input/StringMenuOwner.java 2018-05-20 10:11:54.962933858 +0200 +++ new/core/JemmyCore/src/org/jemmy/input/StringMenuOwner.java 2018-05-20 10:11:54.906932149 +0200 @@ -46,7 +46,7 @@ /** * Pushes the menu using one string for one level of the menu. Comparison * is done according to the policy. - * @param texts + * @param texts todo document * @see #getPolicy() */ public void push(String... texts) { @@ -57,10 +57,10 @@ } /** - * A shortcut to menu().push(LookupCriteria ...) + * A shortcut to menu().push(LookupCriteria ...) * @see #menu() - * @see Menu#push(org.jemmy.lookup.LookupCriteria[]) - * @param criteria + * @see Menu#push(LookupCriteria[]) + * @param criteria the lookup criteria */ public void push(LookupCriteria... criteria) { menu().push(criteria); @@ -69,7 +69,7 @@ /** * Select a menu item using one string for one level of the menu. Comparison * is done according to the policy. - * @param texts + * @param texts todo document * @return wrap for the last selected item * @see #getPolicy() */ @@ -81,10 +81,11 @@ } /** - * A shortcut to menu().select(LookupCriteria ...) + * A shortcut to menu().select(LookupCriteria ...) * @see #menu() - * @see Menu#select(org.jemmy.lookup.LookupCriteria[]) - * @param criteria + * @see Menu#select(LookupCriteria[]) + * @param criteria the lookup criteria + * @return todo document */ public Wrap select(LookupCriteria... criteria) { return menu().select(criteria);