blob: b310db0ad7457369b8c3eae221e8b8963618b839 [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 MonitorContendedEnteredEvent extends LocatableEvent {
public ThreadReference thread();
public ObjectReference monitor();
}