Example usage for org.aspectj.weaver ResolvedType isAspect

List of usage examples for org.aspectj.weaver ResolvedType isAspect

Introduction

In this page you can find the example usage for org.aspectj.weaver ResolvedType isAspect.

Prototype

public boolean isAspect() 

Source Link

Usage

From source file:info.rubico.mock4aj.weavers.aspectj.DynamicRuntimeWeavingAdaptor.java

License:Open Source License

public boolean isAspect(final Class<?> clazz) {
    ResolvedType type = bcelWorld.resolve(clazz.getName());
    return type.isAspect();
}