Example usage for org.aspectj.weaver ResolvedMember getName

List of usage examples for org.aspectj.weaver ResolvedMember getName

Introduction

In this page you can find the example usage for org.aspectj.weaver ResolvedMember getName.

Prototype

public String getName();

Source Link

Usage

From source file:org.eclipse.ajdt.core.model.AJWorldFacade.java

License:Open Source License

private String qualifiedElementName(ResolvedMember signature) {
    return signature.getDeclaringType().getClassName() + "." + signature.getName();
}