Example usage for org.aspectj.org.eclipse.jdt.core.dom DeclareParentsDeclaration isExtends

List of usage examples for org.aspectj.org.eclipse.jdt.core.dom DeclareParentsDeclaration isExtends

Introduction

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

Prototype

boolean isExtends

To view the source code for org.aspectj.org.eclipse.jdt.core.dom DeclareParentsDeclaration isExtends.

Click Source Link

Usage

From source file:ajdtplugin.AjNaiveASTFlattener.java

License:Open Source License

public boolean visit(DeclareParentsDeclaration node) {
    printIndent();//from  w  w  w. jav a 2  s.c  o  m
    this.buffer.append("declare parents: ");
    node.getChildTypePattern().accept(this);

    if (node.isExtends()) {
        this.buffer.append(" extends ");
    } else {
        this.buffer.append(" implements ");
    }

    for (Iterator<?> it = node.parentTypePatterns().iterator(); it.hasNext();) {
        TypePattern typePat = (TypePattern) it.next();
        typePat.accept(this);
        if (it.hasNext()) {
            this.buffer.append(", ");
        }
    }

    this.buffer.append(";\n");

    return false;
}