Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package org.aspectj.lang.reflect;
/* loaded from: classes2.dex */
public enum AdviceKind {
BEFORE,
AFTER,
AFTER_RETURNING,
AFTER_THROWING,
AROUND
}

View File

@@ -0,0 +1,5 @@
package org.aspectj.lang.reflect;
/* loaded from: classes2.dex */
public interface CodeSignature extends MemberSignature {
}

View File

@@ -0,0 +1,9 @@
package org.aspectj.lang.reflect;
/* loaded from: classes2.dex */
public enum DeclareAnnotation$Kind {
Field,
Method,
Constructor,
Type
}

View File

@@ -0,0 +1,7 @@
package org.aspectj.lang.reflect;
import org.aspectj.lang.Signature;
/* loaded from: classes2.dex */
public interface MemberSignature extends Signature {
}

View File

@@ -0,0 +1,5 @@
package org.aspectj.lang.reflect;
/* loaded from: classes2.dex */
public interface MethodSignature extends CodeSignature {
}

View File

@@ -0,0 +1,15 @@
package org.aspectj.lang.reflect;
/* loaded from: classes2.dex */
public class NoSuchAdviceException extends Exception {
private static final long serialVersionUID = 3256444698657634352L;
private String name;
public NoSuchAdviceException(String str) {
this.name = str;
}
public String getName() {
return this.name;
}
}

View File

@@ -0,0 +1,15 @@
package org.aspectj.lang.reflect;
/* loaded from: classes2.dex */
public class NoSuchPointcutException extends Exception {
private static final long serialVersionUID = 3256444698657634352L;
private String name;
public NoSuchPointcutException(String str) {
this.name = str;
}
public String getName() {
return this.name;
}
}

View File

@@ -0,0 +1,11 @@
package org.aspectj.lang.reflect;
/* loaded from: classes2.dex */
public enum PerClauseKind {
SINGLETON,
PERTHIS,
PERTARGET,
PERCFLOW,
PERCFLOWBELOW,
PERTYPEWITHIN
}

View File

@@ -0,0 +1,5 @@
package org.aspectj.lang.reflect;
/* loaded from: classes2.dex */
public interface SourceLocation {
}