blob: 1060c8489961ecb0875ad97f030b36fc2a52d282 (
plain)
1
2
3
4
5
6
7
8
9
|
package test5;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Entity {
int[] value();
}
|