blob: 4e9171488ce0a90840c4f5f607a9ea2ac4d0c04a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package test3;
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
public @interface ChibaAnnotation {
String name();
String version();
String description();
String interfaceName();
}
|