blob: 38dfc0924a887df3e0e00098a583d22315a12c50 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.core;
/**
* Enhancements to the launches listener interface. Provides notification
* when one or more launches terminate.
* <p>
* Clients implementing launches listener may implement
* this interface.
* </p>
* @since 3.0
*/
public interface ILaunchesListener2 extends ILaunchesListener {
/**
* Notification that the given launches have terminated.
*
* @param launches the launches that have terminated
*/
public void launchesTerminated(ILaunch[] launches);
}