KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > core > ILaunchesListener2


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.debug.core;
12
13 /**
14  * Enhancements to the launches listener interface. Provides notification
15  * when one or more launches terminate.
16  * <p>
17  * Clients implementing launches listener may implement
18  * this interface.
19  * </p>
20  * @since 3.0
21  */

22 public interface ILaunchesListener2 extends ILaunchesListener {
23     
24     /**
25      * Notification that the given launches have terminated.
26      *
27      * @param launches the launches that have terminated
28      */

29     public void launchesTerminated(ILaunch[] launches);
30 }
31
Popular Tags