OpenKeyWord  Build_ID: 457, Datum: 01.02.2020 07:45:48
Dont repeat yourself. - Do it once and only once!
OKW.java
1 package okw;
2 
3 import java.lang.annotation.Inherited;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 
7 import java.lang.annotation.ElementType;
8 import java.lang.annotation.Target;
9 
30 @Target(
31 {
32  ElementType.TYPE, // Usable in Class-es
33  ElementType.FIELD } )
34 
35 // Usable in Field-s
36 @Inherited
37 @Retention( RetentionPolicy.RUNTIME )
38 public @interface OKW
39 {
40 
52  public String FN() default "";
53 
54 
60  public int WaitForMe_TO() default 30;
61 
69  public int WaitForMe_PT() default 1000;
70 
71 
77  int VerifyBadge_TO() default 5;
78 
86  int VerifyBadge_PT() default 1000;
87 
93  public int VerifyHasFocus_TO() default 5;
94 
102  public int VerifyHasFocus_PT() default 1000;
103 
104 
110  public int VerifyIsActive_TO() default 5;
111 
119  public int VerifyIsActive_PT() default 1000;
120 
121 
127  int VerifyLabel_TO() default 5;
128 
136  int VerifyLabel_PT() default 1000;
137 
138 
144  int VerifyMaxLength_TO() default 5;
145 
153  int VerifyMaxLength_PT() default 1000;
154 
155 
163  int VerifyPlaceholder_PT() default 1000;
164 
170  int VerifyPlaceholder_TO() default 5;
171 
172 
178  int VerifySelectedValue_TO() default 5;
179 
187  int VerifySelectedValue_PT() default 1000;
188 
189 
195  int VerifyTablecellValue_TO() default 5;
196 
204  int VerifyTablecellValue_PT() default 1000;
205 
206 
212  int VerifyTooltip_TO() default 5;
213 
221  public int VerifyTooltip_PT() default 1000;
222 
228  public int VerifyValue_TO() default 5;
229 
237  public int VerifyValue_PT() default 1000;
238 
244  public int VerifyCaption_TO() default 5;
245 
253  public int VerifyCaption_PT() default 1000;
254 
260  public int VerifyExists_TO() default 5;
261 
269  public int VerifyExists_PT() default 1000;
270 
276  int VerifyMinLength_TO() default 5;
277 
285  int VerifyMinLength_PT() default 1000;
286 
292  int VerifyErrorMSG_TO() default 5;
293 
301  int VerifyErrorMSG_PT() default 1000;
302 
303 }
okw.OKW
Annotations-Klasses für die Zuordnung von.
Definition: OKW.java:38