Example usage for org.aspectj.org.eclipse.jdt.core.dom AndPointcut getRight

List of usage examples for org.aspectj.org.eclipse.jdt.core.dom AndPointcut getRight

Introduction

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

Prototype

public PointcutDesignator getRight() 

Source Link

Usage

From source file:ajdtplugin.AjNaiveASTFlattener.java

License:Open Source License

public boolean visit(AndPointcut node) {
    node.getLeft().accept(this);
    this.buffer.append(" && ");
    node.getRight().accept(this);
    return false;
}