mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
14 lines
342 B
Java
Generated
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 {
|
|
}
|