Files
rr3-apk/decompiled/sources/androidx/annotation/InspectableProperty.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

53 lines
1.1 KiB
Java

package androidx.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 InspectableProperty {
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.SOURCE)
public @interface EnumEntry {
String name();
int value();
}
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.SOURCE)
public @interface FlagEntry {
int mask() default 0;
String name();
int target();
}
public enum ValueType {
NONE,
INFERRED,
INT_ENUM,
INT_FLAG,
COLOR,
GRAVITY,
RESOURCE_ID
}
int attributeId() default 0;
EnumEntry[] enumMapping() default {};
FlagEntry[] flagMapping() default {};
boolean hasAttributeId() default true;
String name() default "";
ValueType valueType() default ValueType.INFERRED;
}