Files
codeql/java/ql/test/stubs/javax-annotation-api-1.3.2/javax/annotation/PostConstruct.java
2023-06-14 12:34:52 +02:00

14 lines
342 B
Java
Generated

package javax.annotation;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Documented
@Retention(RUNTIME)
@Target(METHOD)
public @interface PostConstruct {
}