< prev index next >

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

Print this page

        

@@ -28,11 +28,10 @@
 import com.sun.jdi.*;
 
 /**
  * Notification that a thread in the target VM has finished
  * waiting on an monitor object.
- * <P>
  *
  * @see EventQueue
  * @see MonitorWaitEvent
  *
  * @author Swamy Venkataramanappa

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

@@ -58,11 +56,11 @@
     public ObjectReference  monitor();
 
     /**
      * Returns whether the wait has timed out or been interrupted.
      *
-     * @return <code>true</code> if the wait is timed out.
+     * @return {@code true} if the wait is timed out.
      */
     public boolean  timedout();
 
 
 }
< prev index next >