You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ComplexAnnotation.java 234B

12345678910111213
  1. import java.lang.annotation.*;
  2. @Retention(RetentionPolicy.RUNTIME)
  3. public @interface ComplexAnnotation {
  4. int ival();
  5. byte bval();
  6. char cval();
  7. long jval();
  8. double dval();
  9. boolean zval();
  10. short sval();
  11. float fval();
  12. }