KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > internal > ui > contexts > provisional > ISuspendTriggerListener


1 /*******************************************************************************
2  * Copyright (c) 2005, 2006 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.internal.ui.contexts.provisional;
12
13 import org.eclipse.debug.core.ILaunch;
14
15 /**
16  * Listeners are notified when a launch has suspended at a context
17  * where debugging should being. For example, at a breakpoint.
18  * <p>
19  * Clients may implement this interface.
20  * </p>
21  * @since 3.2
22  */

23 public interface ISuspendTriggerListener {
24     
25     /**
26      * Notification the given launch has suspended at the
27      * specified context.
28      *
29      * @param launch
30      * @param context
31      */

32     public void suspended(ILaunch launch, Object JavaDoc context);
33
34 }
35
Popular Tags