Example usage for org.eclipse.jface.util Util hashCode

List of usage examples for org.eclipse.jface.util Util hashCode

Introduction

In this page you can find the example usage for org.eclipse.jface.util Util hashCode.

Prototype

@Deprecated
public static int hashCode(final Object[] objects) 

Source Link

Document

Computes the hash code for an array of objects, but with defense against null.

Usage

From source file:org.erlide.ui.util.ETreeNode.java

License:Open Source License

@Override
public int hashCode() {
    return Util.hashCode(value);
}