Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f701c5a9fff42516c6bca21fc57e049a6629638e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
 * Copyright (c) 2005, 2011 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.ui.contexts;

import org.eclipse.debug.core.ILaunch;

/**
 * Listeners are notified when a launch has suspended at a context
 * where debugging should begin. For example, in a stack frame where
 * a breakpoint has been encountered.
 * <p>
 * Generally, clients implement <code>ISuspendTrigger</code> and the debug platform registers
 * as a suspend trigger listener.
 * </p>
 * @see ISuspendTrigger
 * @since 3.3
 * @noimplement This interface is not intended to be implemented by clients.
 * @noextend This interface is not intended to be extended by clients.
 */
public interface ISuspendTriggerListener {

	/**
	 * Notification the given launch has suspended at the
	 * specified context.
	 *
	 * @param launch the launch that has suspended
	 * @param context the context on which the launch suspended
	 */
	public void suspended(ILaunch launch, Object context);

}

Back to the top