@@ -70,7 +70,8 @@ JDWP "Java(tm) Debug Wire Protocol"
7070 )
7171 (Command AllClasses = 3
7272 "Returns reference types for all classes currently loaded by the "
73- "target VM."
73+ "target VM. "
74+ "See <a href=\" ../jvmti.html#GetLoadedClasses\" >JVM TI GetLoadedClasses</a>."
7475 (Out
7576 )
7677 (Reply
@@ -600,14 +601,9 @@ JDWP "Java(tm) Debug Wire Protocol"
600601
601602(CommandSet ReferenceType = 2
602603 (Command Signature = 1
603- "Returns the JNI signature of a reference type. "
604- "JNI signature formats are described in the "
605- "<a href=\" ../jni/index.html\" >Java Native Interface Specification</a>"
606- "< p >
607- "For primitive classes "
608- "the returned signature is the signature of the corresponding primitive "
609- "type; for example, \" I\" is returned as the signature of the class "
610- "represented by java.lang.Integer.TYPE."
604+ "Returns the type signature of a reference type. "
605+ "Type signature formats are the same as specified in "
606+ "<a href=\" ../jvmti.html#GetClassSignature\" >JVM TI GetClassSignature</a>."
611607 (Out
612608 (referenceType refType "The reference type ID." )
613609 )
@@ -2266,11 +2262,12 @@ JDWP "Java(tm) Debug Wire Protocol"
22662262)
22672263(CommandSet ClassLoaderReference = 14
22682264 (Command VisibleClasses = 1
2269- "Returns a list of all classes which this class loader has "
2270- "been requested to load. This class loader is considered to be "
2271- "an <i>initiating</i> class loader for each class in the returned "
2272- "list. The list contains each "
2273- "reference type defined by this loader and any types for which "
2265+ "Returns a list of all classes which this class loader can find "
2266+ "by name via <code>ClassLoader::loadClass</code>, "
2267+ "<code>Class::forName</code> and bytecode linkage. That is, "
2268+ "all classes for which this class loader has been recorded as an "
2269+ "<i>initiating</i> loader. The list contains each "
2270+ "reference type created by this loader and any types for which "
22742271 "loading was delegated by this class loader to another class loader. "
22752272 "<p>"
22762273 "The visible class list has useful properties with respect to "
@@ -2280,6 +2277,8 @@ JDWP "Java(tm) Debug Wire Protocol"
22802277 "this class loader must be resolved to that single type. "
22812278 "<p>"
22822279 "No ordering of the returned list is guaranteed. "
2280+ "<p>"
2281+ "See <a href=\" ../jvmti.html#GetClassLoaderClasses\" >JVM TI GetClassLoaderClasses</a>. "
22832282 (Out
22842283 (classLoaderObject classLoaderObject "The class loader object ID. " )
22852284 )
0 commit comments