Example usage for org.eclipse.jdt.core.dom SuperFieldAccess toString

List of usage examples for org.eclipse.jdt.core.dom SuperFieldAccess toString

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom SuperFieldAccess toString.

Prototype

@Override
public final String toString() 

Source Link

Document

Returns a string representation of this node suitable for debugging purposes only.

Usage

From source file:padl.creator.javafile.eclipse.astVisitors.CompleteVisitor.java

License:Open Source License

@Override
public void endVisit(final SuperFieldAccess node) {
    ProxyConsole.getInstance().debugOutput().println(
            " SuperMethodInvocation " + node.toString() + node.resolveTypeBinding().getQualifiedName());
    super.endVisit(node);
}