Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

org.eclipse.ui.console
Interface IConsole

All Known Implementing Classes:
AbstractConsole, IOConsole, MessageConsole, TextConsole

public interface IConsole

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.

The console implementations provided by this plug-in are textual (TextConsole, MessageConsole and IOConsole). 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.

Subclass AbstractConsole when implementing this interface.

Since:
3.0

Method Summary
 void addPropertyChangeListener ( IPropertyChangeListener listener)
          Adds a listener for changes to properties of this console.
  IPageBookViewPage createPage ( IConsoleView view)
          Creates and returns a new page for this console.
  ImageDescriptor getImageDescriptor ()
          Returns an image descriptor for this console, or null if none.
  String getName ()
          Returns the name of this console.
  String getType ()
          Returns a unique identifier for this console's type, or null if unspecified.
 void removePropertyChangeListener ( IPropertyChangeListener listener)
          Removes the given property listener from this console page.
 

Method Detail

getName


String getName()
Returns the name of this console.

Returns:
the name of this console

getImageDescriptor


ImageDescriptor getImageDescriptor()
Returns an image descriptor for this console, or null if none.

Returns:
an image descriptor for this console, or null if none

createPage


IPageBookViewPage createPage(
IConsoleView view)
Creates and returns a new page for this console. The page is displayed for this console in the console given view.

Parameters:
view - the view in which the page is to be created
Returns:
a page book view page representation of this console

addPropertyChangeListener

void addPropertyChangeListener(
IPropertyChangeListener listener)
Adds a listener for changes to properties of this console. Has no effect if an identical listener is already registered.

The changes supported by the console view are as follows:

  • IBasicPropertyConstants.P_TEXT - indicates the name of a console has changed
  • IBasicPropertyConstants.P_IMAGE - indicates the image of a console has changed

Consoles may define additional properties as required.

Parameters:
listener - a property change listener

removePropertyChangeListener

void removePropertyChangeListener(
IPropertyChangeListener listener)
Removes the given property listener from this console page. Has no effect if an identical listener is not already registered.

Parameters:
listener - a property listener

getType


String getType()
Returns a unique identifier for this console's type, or null if unspecified.

Returns:
a unique identifier for this console's type, or null
Since:
3.1

Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire