blob: 1912450486be074e94e2db7a41f72caa64b6c266 [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;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.ui.part.IPageBookViewPage;
/**
* A console. A console is commonly used to display messages such as the output
* streams of a system process. A console can be displayed in one or more console
* views.
* <p>
* The console implementations provided by this plug-in are textual
* (<code>TextConsole</code>, <code>MessageConsole</code> and <code>IOConsole</code>).
* However a client can provide alternate presentations since a console implementation
* is responsible for providing is page for the page book views in which consoles are
* displayed.
* </p>
* <p>
* This interface is not intended to be implemented directly by clients.
* Subclass <code>AbstractConsole</code> instead.
* </p>
* @since 3.0
*/
public interface IConsole {
/**
* Returns the name of this console.
*
* @return the name of this console
*/
public String getName();
/**
* Returns an image descriptor for this console, or <code>null</code>
* if none.
*
* @return an image descriptor for this console, or <code>null</code>
* if none
*/
public ImageDescriptor getImageDescriptor();
/**
* Creates and returns a new page for this console. The page is displayed
* for this console in the console given view.
*
* @param view the view in which the page is to be created
* @return a page book view page representation of this console
*/
public IPageBookViewPage createPage(IConsoleView view);
/**
* Adds a listener for changes to properties of this console.
* Has no effect if an identical listener is already registered.
* <p>
* The changes supported by the console view are as follows:
* <ul>
* <li><code>IBasicPropertyConstants.P_TEXT</code> - indicates the name
* of a console has changed</li>
* <li><code>IBasicPropertyConstants.P_IMAGE</code> - indicates the image
* of a console has changed</li>
* </ul>
* </p>
* <p>
* Consoles may define additional properties as required.
* </p>
*
* @param listener a property change listener
*/
public void addPropertyChangeListener(IPropertyChangeListener listener);
/**
* Removes the given property listener from this console page.
* Has no effect if an identical listener is not alread registered.
*
* @param listener a property listener
*/
public void removePropertyChangeListener(IPropertyChangeListener listener);
/**
* Returns a unique identifier for this console's type, or <code>null</code>
* if unspecified.
*
* @return a unique identifier for this console's type, or <code>null</code>
* @since 3.1
*/
public String getType();
}