Example usage for org.aspectj.org.eclipse.jdt.core.dom DefaultPointcut getDetail

List of usage examples for org.aspectj.org.eclipse.jdt.core.dom DefaultPointcut getDetail

Introduction

In this page you can find the example usage for org.aspectj.org.eclipse.jdt.core.dom DefaultPointcut getDetail.

Prototype

public String getDetail() 

Source Link

Usage

From source file:ajdtplugin.AjNaiveASTFlattener.java

License:Open Source License

public boolean visit(DefaultPointcut node) {
    this.buffer.append(node.getDetail());
    return false;
}