KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > core > commands > IDisconnectHandler


1 /*******************************************************************************
2  * Copyright (c) 2006, 2007 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.commands;
12
13 /**
14  * A disconnect handler disconnects the debug user interface from
15  * a debug session. Typically a disconnect handler is supported by remote
16  * debuggers allowing the debug user interface to disconnect and the
17  * remote process to continue.
18  * <p>
19  * Clients may implement this interface. The debug platform provides a
20  * disconnect action that delegates to this handler interface. As well, the
21  * debug platform provides an implementation of the disconnect handler registered
22  * as an adapter on objects that implement {@link org.eclipse.debug.core.model.IDisconnect}.
23  * </p>
24  * @since 3.3
25  */

26 public interface IDisconnectHandler extends IDebugCommandHandler {
27
28 }
29
Popular Tags