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

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

Introduction

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

Prototype

int DECLARING_TYPE

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

Click Source Link

Usage

From source file:com.codenvy.ide.ext.java.server.internal.core.util.Util.java

License:Open Source License

public static String getDeclaringTypeSignature(String key) {
    KeyToSignature keyToSignature = new KeyToSignature(key, KeyToSignature.DECLARING_TYPE);
    keyToSignature.parse();/*from w w w.ja  v  a  2s.c  o m*/
    return keyToSignature.signature.toString();
}