Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1587a35fa6772af8c76d8753e28b6e83e5a56a53 (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
/*******************************************************************************
 * Copyright (c) 2009 Wind River Systems and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.core.commands;

/**
 * A restart command allows the debugger to quickly restart the current debug
 * session without terminating and re-launching.
 * <p>
 * Clients may implement this interface. The debug platform provides a
 * restart action that delegates to this handler interface. Platform does not
 * provide a default implementation of this handler, so to enable this action
 * the debugger implementation must provide one.
 * </p>
 *
 * @since 3.6
 */
public interface IRestartHandler extends IDebugCommandHandler {

}

Back to the top