Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 765dc3f57e7bfecefa4cb89b325ccdff9fe6b2cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package java.lang;

import java.lang.annotation.Documented;
import static java.lang.annotation.ElementType.*;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.*;
import java.lang.annotation.Target;

@Documented
@Retention(RUNTIME)
@Target({CONSTRUCTOR, METHOD})
public @interface SafeVarargs {}

Back to the top