package org.aspectj.lang.reflect;

import java.lang.reflect.Type;

/* JADX INFO: loaded from: classes.dex */
public interface DeclareParents {
    AjType getDeclaringType();

    Type[] getParentTypes() throws ClassNotFoundException;

    TypePattern getTargetTypesPattern();

    boolean isExtends();

    boolean isImplements();
}
