< prev index next >

core/JemmyCore/src/org/jemmy/control/FieldProperties.java

Print this page

        

@@ -42,18 +42,18 @@
 @Target(ElementType.TYPE)
 @Inherited
 @Documented
 public @interface FieldProperties {
     /**
-     * List of field names.
+     * @return list of field names.
      */
     String[] value();
     /**
-     * List of field types. In case this list is shorter, all the unmatched ones
+     * @return list of field types. In case this list is shorter, all the unmatched ones
      * from <code>value</code> are considered to be of type <code>Object</code>.
      */
     Class[] types() default {};
     /**
-     * Are the properties worth a waiter.
+     * @return are the properties worth a waiter.
      */
     boolean[] waitable() default {};
 }
< prev index next >