• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test5;
2 
3 import java.lang.annotation.Retention;
4 import java.lang.annotation.RetentionPolicy;
5 
6 @Retention(RetentionPolicy.RUNTIME)
7 public @interface Entity {
value()8     int[] value();
9 }
10