blob: 8c4382ad121ad16a962fed8892869afcaddffa87 [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;
import org.eclipse.ui.IViewPart;
/**
* A view that displays consoles registered with the console manager.
* <p>
* Clients are not intended to implement this interface.
* </p>
* @since 3.0
*/
public interface IConsoleView extends IViewPart {
/**
* Displays the page for the given console in this console view.
* Has no effect if this console view has a pinned console.
*
* @param console console to display, cannot be <code>null</code>
*/
public void display(IConsole console);
/**
* Displays and pins the given console in this console view. No
* other console can be displayed until this console view is
* un-pinned. Specifying <code>null</code> un-pins this console
*
* @param console console to pin, or <code>null</code> to un-pin
*/
public void pin(IConsole console);
/**
* Returns whether this console view is currently pinned to a
* specific console.
*
* @return whether this console view is currently pinned to a
* specific console
*/
public boolean isPinned();
/**
* Returns the console currently being displayed, or <code>null</code>
* if none
*
* @return the console currently being displayed, or <code>null</code>
* if none
*/
public IConsole getConsole();
}