blob: fdd00f1ce4510dcca38aca0942bba33558f9b1b6 [file] [log] [blame]
package test0231;
import java.lang.annotation.Target;
import java.lang.annotation.Retention;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
@Target({TYPE,METHOD})
@Retention(RUNTIME)
public @interface Test {
String value() default "";
}