< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/event/ClassUnloadEvent.java

Print this page
rev 58770 : [mq]: svc-spec-update

@@ -40,14 +40,20 @@
  * @since  1.3
  */
 public interface ClassUnloadEvent extends Event {
 
     /**
-     * Returns the name of the class that has been unloaded.
+     * Returns the {@linkplain com.sun.jdi.Type#name() name of the class} that has been unloaded.
+     * The returned string may not be a binary name.
+     *
+     * @see Class#getName()
      */
     public String className();
 
     /**
-     * Returns the JNI-style signature of the class that has been unloaded.
+     * Returns the {@linkplain com.sun.jdi.Type#signature() type signature of the class} that has been unloaded.
+     * The returned string may not be a valid type descriptor.
+     *
+     * @see java.lang.invoke.TypeDescriptor#descriptorString()
      */
     public String classSignature();
 }
< prev index next >