2025-03-31 16:33:42 +02:00

27 lines
568 B
Java

package androidx.resourceinspection.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.SOURCE)
/* loaded from: classes.dex */
public @interface Attribute {
@Target({})
@Retention(RetentionPolicy.SOURCE)
public @interface IntMap {
int mask() default 0;
String name();
int value();
}
IntMap[] intMapping() default {};
String value();
}