Example usage for org.aspectj.org.eclipse.jdt.core.dom NotPointcut BODY_PROPERTY

List of usage examples for org.aspectj.org.eclipse.jdt.core.dom NotPointcut BODY_PROPERTY

Introduction

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

Prototype

ChildPropertyDescriptor BODY_PROPERTY

To view the source code for org.aspectj.org.eclipse.jdt.core.dom NotPointcut BODY_PROPERTY.

Click Source Link

Usage

From source file:org.eclipse.ajdt.core.dom.rewrite.AjASTRewriteAnalyzer.java

License:Open Source License

public boolean visit(NotPointcut node) {
    // ajh02: method added
    if (!hasChildrenChanges(node)) {
        return doVisitUnchangedChildren(node);
    }//from  w w w  . jav a 2s. c om
    // body
    rewriteRequiredNode(node, NotPointcut.BODY_PROPERTY);
    return false;
}