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

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

Introduction

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

Prototype

public PointcutDesignator getRight() 

Source Link

Usage

From source file:ajdtplugin.AjNaiveASTFlattener.java

License:Open Source License

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