blob: 1f2b7bb397901d78bb1eb2c2ca67121970e27680 [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;
/**
* Manages consoles.
* <p>
* Clients are not intended to implement this interface.
* </p>
* @since 3.0
*/
public interface IConsoleManager {
/**
* Registers the given listener for console notifications. Has
* no effect if an identical listener is already registered.
*
* @param listener listener to register
*/
public void addConsoleListener(IConsoleListener listener);
/**
* Deregisters the given listener for console notifications. Has
* no effect if an identical listener is not already registered.
*
* @param listener listener to deregister
*/
public void removeConsoleListener(IConsoleListener listener);
/**
* Adds the given consoles to the console manager. Has no effect for
* equivalent consoles already registered. The consoles will be added
* to any existing console views.
*
* @param consoles consoles to add
*/
public void addConsoles(IConsole[] consoles);
/**
* Removes the given consoles from the console manager. If the consoles are
* being displayed in any console views, the associated pages will be closed.
*
* @param consoles consoles to remove
*/
public void removeConsoles(IConsole[] consoles);
/**
* Returns a collection of consoles registered with the console manager.
*
* @return a collection of consoles registered with the console manager
*/
public IConsole[] getConsoles();
}