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

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

Introduction

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

Prototype

long PauseHierarchyCheck

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

Click Source Link

Usage

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

License:Open Source License

/**
 * Returns true if the type hierarchy is being connected "actively" i.e not paused momentatrily, 
 * while resolving type arguments. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=294057
 *///from   w w w .  ja  v a2 s. c  o m
public boolean isHierarchyBeingActivelyConnected() {
    return (this.tagBits & TagBits.EndHierarchyCheck) == 0 && (this.tagBits & TagBits.BeginHierarchyCheck) != 0
            && (this.tagBits & TagBits.PauseHierarchyCheck) == 0;
}