< prev index next >

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

Print this page

        

*** 42,59 **** @Target(ElementType.TYPE) @Inherited @Documented public @interface FieldProperties { /** ! * List of field names. */ String[] value(); /** ! * 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. */ boolean[] waitable() default {}; } --- 42,59 ---- @Target(ElementType.TYPE) @Inherited @Documented public @interface FieldProperties { /** ! * @return list of field names. */ String[] value(); /** ! * @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 {}; /** ! * @return are the properties worth a waiter. */ boolean[] waitable() default {}; }
< prev index next >