Example usage for org.eclipse.jdt.internal.compiler.lookup TagBits IsBinaryBinding

List of usage examples for org.eclipse.jdt.internal.compiler.lookup TagBits IsBinaryBinding

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.lookup TagBits IsBinaryBinding.

Prototype

long IsBinaryBinding

To view the source code for org.eclipse.jdt.internal.compiler.lookup TagBits IsBinaryBinding.

Click Source Link

Usage

From source file:org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.java

License:Open Source License

public final boolean isBinaryBinding() {
    return (this.tagBits & TagBits.IsBinaryBinding) != 0;
}