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.

MonitorableMethod.java 357B

123456789101112131415
  1. package p;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Inherited;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. @Inherited
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Target({ElementType.METHOD})
  10. public @interface MonitorableMethod
  11. {
  12. ApiDescriptor value();
  13. }