blob: 5aa13e58e3b40f9d60996cfa62cc344362757f00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 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.Method;
import com.sun.jdi.Value;
public interface MethodExitEvent extends LocatableEvent {
public Method method();
public Value returnValue();
}