Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
14
apk_decompiled/sources/javax/inject/Inject.java
Normal file
14
apk_decompiled/sources/javax/inject/Inject.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package javax.inject;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: classes3.dex */
|
||||
public @interface Inject {
|
||||
}
|
||||
13
apk_decompiled/sources/javax/inject/Named.java
Normal file
13
apk_decompiled/sources/javax/inject/Named.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package javax.inject;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
@Qualifier
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: classes3.dex */
|
||||
public @interface Named {
|
||||
String value() default "";
|
||||
}
|
||||
6
apk_decompiled/sources/javax/inject/Provider.java
Normal file
6
apk_decompiled/sources/javax/inject/Provider.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package javax.inject;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface Provider<T> {
|
||||
T get();
|
||||
}
|
||||
14
apk_decompiled/sources/javax/inject/Qualifier.java
Normal file
14
apk_decompiled/sources/javax/inject/Qualifier.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package javax.inject;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.ANNOTATION_TYPE})
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: classes3.dex */
|
||||
public @interface Qualifier {
|
||||
}
|
||||
14
apk_decompiled/sources/javax/inject/Scope.java
Normal file
14
apk_decompiled/sources/javax/inject/Scope.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package javax.inject;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.ANNOTATION_TYPE})
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: classes3.dex */
|
||||
public @interface Scope {
|
||||
}
|
||||
12
apk_decompiled/sources/javax/inject/Singleton.java
Normal file
12
apk_decompiled/sources/javax/inject/Singleton.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package javax.inject;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
@Scope
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: classes3.dex */
|
||||
public @interface Singleton {
|
||||
}
|
||||
Reference in New Issue
Block a user