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.

SomeAnnotation.java 370B

12345678910111213
  1. package somepackage;
  2. import java.io.Serializable;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. @Target(ElementType.TYPE)
  8. @Retention(RetentionPolicy.SOURCE)
  9. public @interface SomeAnnotation {
  10. Class<? extends Serializable> value() default Long.class;
  11. }