Example usage for org.eclipse.jdt.internal.core.util KeyToSignature SIGNATURE

List of usage examples for org.eclipse.jdt.internal.core.util KeyToSignature SIGNATURE

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core.util KeyToSignature SIGNATURE.

Prototype

int SIGNATURE

To view the source code for org.eclipse.jdt.internal.core.util KeyToSignature SIGNATURE.

Click Source Link

Usage

From source file:org.eclipse.imp.analysis.type.constraints.fastrep.BindingKey.java

License:Open Source License

/**
 * Internal method.//from  ww w . j a  v  a2s.c o  m
 * <p>
 * This method transforms this binding key into a signature. This method is not intended to be called by clients.
 * </p>
 * 
 * @return the signature for this binding key
 */
public String internalToSignature() {
    KeyToSignature keyToSignature = new KeyToSignature(this.key, KeyToSignature.SIGNATURE);
    keyToSignature.parse();
    return keyToSignature.signature.toString();
}