blob: 7d22c8a21f17676df6e12f9487a9b86dc7ade7c3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-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);
}