Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5226e586c7ecb2e4c18aabe219ac3a0db3abef1b (plain) (blame)
1
2
3
4
5
6
package java.lang;
import java.lang.annotation.*;
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface Deprecated {
}

Back to the top