Example usage for org.eclipse.jdt.internal.compiler.lookup SourceTypeBinding hashCode

List of usage examples for org.eclipse.jdt.internal.compiler.lookup SourceTypeBinding hashCode

Introduction

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

Prototype

@Override
    public int hashCode() 

Source Link

Usage

From source file:com.android.tools.lint.psi.EcjPsiClass.java

License:Apache License

@Override
public int hashCode() {
    SourceTypeBinding binding = ((TypeDeclaration) mNativeNode).binding;
    return binding != null ? binding.hashCode() : 0;
}