Example usage for org.eclipse.jdt.core.dom UnionType resolveBinding

List of usage examples for org.eclipse.jdt.core.dom UnionType resolveBinding

Introduction

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

Prototype

public final ITypeBinding resolveBinding() 

Source Link

Document

Resolves and returns the binding for this type.

Usage

From source file:com.google.devtools.j2objc.types.BindingMapBuilder.java

License:Open Source License

public boolean visit(UnionType node) {
    put(node, node.resolveBinding());
    return true;
}