/** * Returns the JNI-style signature for this type. * * <p>For primitive classes the returned signature is the signature of the corresponding primitive * type; for example, "I" is returned as the signature of the class represented by {@link * java.lang.Integer#TYPE}. * * @see <a href="doc-files/signature.html">Type Signatures</a> * @return the string containing the type signature. */ public String getSignature() { return DebuggerSupport.getJNISignature(klass); }
/** @return the JNI signature of this field */ public String getSignature() { return DebuggerSupport.getJNISignature(field); }