blob: 7bf7022ca30e414640cde58841cc84f73ea77ff3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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 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);
}