blob: 41aedb2369604f9e67c2b29769757b3812ec1ea7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.ui.console;
/**
* A console listener is notified when consoles are added or removed from
* the console manager.
* <p>
* Clients may implement this interface.
* </p>
* @since 3.0
*/
public interface IConsoleListener {
/**
* Notification the given consoles have been added to the console
* manager.
*
* @param consoles added consoles
*/
public void consolesAdded(IConsole[] consoles);
/**
* Notification the given consoles have been removed from the
* console manager.
*
* @param consoles removed consoles
*/
public void consolesRemoved(IConsole[] consoles);
}