< prev index next >

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

Print this page

        

*** 43,60 **** @Target(ElementType.TYPE) @Inherited @Documented public @interface MethodProperties { /** ! * List of method 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 {}; } --- 43,60 ---- @Target(ElementType.TYPE) @Inherited @Documented public @interface MethodProperties { /** ! * @return list of method 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 >