src/jdk.jdi/share/classes/com/sun/jdi/doc-files/signature.html
changeset 47216 71c04702a3d5
parent 46140 3abb2959292f
child 51253 35ca229c7f6f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/jdk.jdi/share/classes/com/sun/jdi/doc-files/signature.html	Tue Sep 12 19:03:39 2017 +0200
@@ -0,0 +1,48 @@
+<!DOCTYPE HTML>
+<HTML lang="EN">
+<HEAD>
+<TITLE>
+JDI Type Signatures
+</TITLE>
+<META charset="UTF-8">
+<STYLE type="text/css">
+tbody th { font-weight: normal }
+</STYLE>
+</HEAD>
+<BODY style="background-color:white">
+<dl><dd>
+<Table Border="0">
+<caption style="font-size:x-large"><b>JDI Type Signatures</b></caption>
+<thead>
+<tr><th scope="col">Type Signature
+<th scope="col">Java Type
+</thead>
+<tbody>
+<tr><th scope="row">Z<td>boolean
+<tr><th scope="row">B<td>byte
+<tr><th scope="row">C<td>char
+<tr><th scope="row">S<td>short
+<tr><th scope="row">I<td>int
+<tr><th scope="row">J<td>long
+<tr><th scope="row">F<td>float
+<tr><th scope="row">D<td>double
+<tr><th scope="row"><strong>L</strong> <em>fully-qualified-class</em> 
+<strong>;</strong>
+<td>fully-qualified-class
+<tr><th scope="row"><strong>[</strong> <em>type
+</em>
+<td><em>type</em>[]
+<tr><th scope="row">
+<strong>(</strong> <em>arg-types </em><strong>)</strong> <em>ret-type
+</em>
+<td>method type (including constructors)
+</tbody>
+</Table>
+</dd></dl>
+<p>For example, the Java method:
+<pre>    long f (int n, String s, int[] arr);
+</pre>has the following type signature:
+<pre>    (ILjava/lang/String;[I)J
+</pre>
+</BODY>
+</HTML>