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

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

Introduction

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

Prototype

public final ITypeBinding resolveTypeBinding() 

Source Link

Document

Resolves and returns the binding for the type of this expression.

Usage

From source file:lang.java.jdt.internal.BindingsResolver.java

License:Open Source License

public void resolveBindings(SuperFieldAccess node) {
    importBinding(node.resolveFieldBinding());
    importBinding(node.resolveTypeBinding());
}

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);
}