blob: 9d027a81703235b220d6afeb78c27c46c56ee8a9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi.event;
import com.sun.jdi.ObjectReference;
import com.sun.jdi.ThreadReference;
public interface MonitorWaitedEvent extends LocatableEvent {
public ThreadReference thread();
public ObjectReference monitor();
public boolean timedout();
}