< prev index next >

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

Print this page

        

*** 28,38 **** 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 --- 28,37 ----
*** 41,51 **** @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(); --- 40,49 ----
*** 58,66 **** public ObjectReference monitor(); /** * Returns the number of millisecond the thread will wait. * ! * @return a <code>jlong</code> containing monitor wait time in milliseconds. */ public long timeout(); } --- 56,64 ---- public ObjectReference monitor(); /** * Returns the number of millisecond the thread will wait. * ! * @return a {@code jlong} containing monitor wait time in milliseconds. */ public long timeout(); }
< prev index next >