< prev index next >

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

Print this page

        

@@ -28,11 +28,10 @@
 import com.sun.jdi.*;
 
 /**
  * Notification that a thread in the target VM is about to
  * wait on a monitor object.
- * <P>
  *
  * @see EventQueue
  * @see MonitorWaitedEvent
  *
  * @author Swamy Venkataramanappa

@@ -41,11 +40,10 @@
 @jdk.Exported
 public interface MonitorWaitEvent extends LocatableEvent {
 
     /**
      * Returns the thread in which monitor wait event has occurred.
-     * <p>
      *
      * @return a {@link ThreadReference} which mirrors the event's thread in
      * the target VM.
      */
     public ThreadReference thread();

@@ -58,9 +56,9 @@
     public ObjectReference  monitor();
 
     /**
      * Returns the number of millisecond the thread will wait.
      *
-     * @return a <code>jlong</code> containing monitor wait time in milliseconds.
+     * @return a {@code jlong} containing monitor wait time in milliseconds.
      */
     public long  timeout();
 }
< prev index next >