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

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

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom FieldAccess 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(FieldAccess node) {
    importBinding(node.resolveFieldBinding());
    importBinding(node.resolveTypeBinding());
}