--- old/core/JemmyCore/src/org/jemmy/dock/DockInfo.java 2018-05-20 10:11:47.831716237 +0200 +++ new/core/JemmyCore/src/org/jemmy/dock/DockInfo.java 2018-05-20 10:11:47.779714650 +0200 @@ -43,6 +43,7 @@ * Desired name of the dock class, should one be generated. * Usually empty ("", as nulls are not allowed) in which case the calculated value * is taken whatever logic annotation processor decides to use. + * @return todo document */ String name() default ""; @@ -50,19 +51,22 @@ * Should there be extra constructors which take another lookup criteria - a class * of a desired control? That class must be a subtype of the one wrapped by the wrap * class annotated with this annotation. + * @return todo document */ boolean generateSubtypeLookups() default false; /** * Should generated wrap() method return this class or - * Wrap and also should there be a constructor with + * Wrap<? extends ...> and also should there be a constructor with * one parameter - the wrap. + * @return todo document */ boolean anonymous() default false; /** * Should the lookup constructors have LookupCriteria<Type>... * parameter or the LookupCriteria<Type> parameter. + * @return todo document */ boolean multipleCriteria() default true; }