Loading core/java/android/annotation/SystemApi.java +12 −0 Original line number Diff line number Diff line Loading @@ -23,6 +23,7 @@ import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.PACKAGE; import static java.lang.annotation.ElementType.TYPE; import java.lang.annotation.Repeatable; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; Loading @@ -40,6 +41,7 @@ import java.lang.annotation.Target; */ @Target({TYPE, FIELD, METHOD, CONSTRUCTOR, ANNOTATION_TYPE, PACKAGE}) @Retention(RetentionPolicy.RUNTIME) @Repeatable(SystemApi.Container.class) // TODO(b/146727827): make this non-repeatable public @interface SystemApi { enum Client { /** Loading Loading @@ -95,4 +97,14 @@ public @interface SystemApi { */ @Deprecated Process process() default android.annotation.SystemApi.Process.ALL; /** * Container for {@link SystemApi} that allows it to be applied repeatedly to types. */ @Retention(RetentionPolicy.RUNTIME) @Target(TYPE) @interface Container { SystemApi[] value(); } } Loading
core/java/android/annotation/SystemApi.java +12 −0 Original line number Diff line number Diff line Loading @@ -23,6 +23,7 @@ import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.PACKAGE; import static java.lang.annotation.ElementType.TYPE; import java.lang.annotation.Repeatable; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; Loading @@ -40,6 +41,7 @@ import java.lang.annotation.Target; */ @Target({TYPE, FIELD, METHOD, CONSTRUCTOR, ANNOTATION_TYPE, PACKAGE}) @Retention(RetentionPolicy.RUNTIME) @Repeatable(SystemApi.Container.class) // TODO(b/146727827): make this non-repeatable public @interface SystemApi { enum Client { /** Loading Loading @@ -95,4 +97,14 @@ public @interface SystemApi { */ @Deprecated Process process() default android.annotation.SystemApi.Process.ALL; /** * Container for {@link SystemApi} that allows it to be applied repeatedly to types. */ @Retention(RetentionPolicy.RUNTIME) @Target(TYPE) @interface Container { SystemApi[] value(); } }