blob: f2277ea85f12fcdb2835c704df2bacb3c0168497 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 Composent, Inc., Peter Nehrer, Boris Bokowski. 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: Composent, Inc. - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.datashare.events;
import org.eclipse.ecf.core.identity.ID;
/**
* Event delivered to the IChannelListener when the parent container of a channel disconnects.
*/
public interface IChannelDisconnectEvent extends IChannelEvent {
/**
* Get ID of IContainer that has disconnected from channel.
*
* @return ID of IContainer that has disconnected. Will not be <code>null</code>.
*/
public ID getTargetID();
}