コード例 #1
0
ファイル: ProxyType.java プロジェクト: johangas/moped
 /**
  * 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);
 }
コード例 #2
0
ファイル: ProxyField.java プロジェクト: johangas/moped
 /** @return the JNI signature of this field */
 public String getSignature() {
   return DebuggerSupport.getJNISignature(field);
 }