< prev index next >

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

Print this page

        

*** 28,38 **** 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 --- 28,37 ----
*** 41,51 **** @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(); --- 40,49 ----
*** 58,68 **** public ObjectReference monitor(); /** * Returns whether the wait has timed out or been interrupted. * ! * @return <code>true</code> if the wait is timed out. */ public boolean timedout(); } --- 56,66 ---- public ObjectReference monitor(); /** * Returns whether the wait has timed out or been interrupted. * ! * @return {@code true} if the wait is timed out. */ public boolean timedout(); }
< prev index next >