Rabbit-R1/android (non root)/java/sources/androidx/resourceinspection/annotation/Attribute.java
2024-05-21 17:08:36 -04:00

27 lines
605 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: classes2.dex */
public @interface Attribute {
@Target({})
@Retention(RetentionPolicy.SOURCE)
/* loaded from: classes2.dex */
public @interface IntMap {
int mask() default 0;
String name();
int value();
}
IntMap[] intMapping() default {};
String value();
}