List of usage examples for org.eclipse.jdt.internal.compiler.lookup SourceTypeBinding hashCode
@Override
public int hashCode()
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; }