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
Interface IEditorDescriptor

All Superinterfaces:
IWorkbenchPartDescriptor

public interface IEditorDescriptor
extends IWorkbenchPartDescriptor

Description of an editor in the workbench editor registry. The editor descriptor contains the information needed to create editor instances.

An editor descriptor typically represents one of three types of editors:

  • a file editor extension for a specific file extension.
  • a file editor added by the user (via the workbench preference page)
  • a general editor extension which works on objects other than files.

This interface is not intended to be implemented or extended by clients.

See Also:
IEditorRegistry
Restriction:
This interface is not intended to be implemented by clients.

Method Summary
  IEditorMatchingStrategy getEditorMatchingStrategy ()
          Returns the editor matching strategy object for editors represented by this editor descriptor, or null if there is no explicit matching strategy specified.
  String getId ()
          Returns the editor id.
  ImageDescriptor getImageDescriptor ()
          Returns the descriptor of the image for this editor.
  String getLabel ()
          Returns the label to show for this editor.
 boolean isInternal ()
          Returns whether this editor descriptor will open a regular editor part inside the editor area.
 boolean isOpenExternal ()
          Returns whether this editor descriptor will open an external editor in a new window outside the workbench.
 boolean isOpenInPlace ()
          Returns whether this editor descriptor will open an external editor in-place inside the editor area.
 

Method Detail

getId


String getId()
Returns the editor id.

For internal editors, this is the extension id as defined in the workbench registry; for external editors, it is path and file name of the external program.

Specified by:
getId in interface IWorkbenchPartDescriptor
Returns:
the id of the editor

getImageDescriptor


ImageDescriptor getImageDescriptor()
Returns the descriptor of the image for this editor.

Specified by:
getImageDescriptor in interface IWorkbenchPartDescriptor
Returns:
the descriptor of the image to display next to this editor

getLabel


String getLabel()
Returns the label to show for this editor.

Specified by:
getLabel in interface IWorkbenchPartDescriptor
Returns:
the editor label

isInternal

boolean isInternal()
Returns whether this editor descriptor will open a regular editor part inside the editor area.

Returns:
true if editor is inside editor area, and false otherwise
Since:
3.0

isOpenInPlace

boolean isOpenInPlace()
Returns whether this editor descriptor will open an external editor in-place inside the editor area.

Returns:
true if editor is in-place, and false otherwise
Since:
3.0

isOpenExternal

boolean isOpenExternal()
Returns whether this editor descriptor will open an external editor in a new window outside the workbench.

Returns:
true if editor is external, and false otherwise
Since:
3.0

getEditorMatchingStrategy


IEditorMatchingStrategy getEditorMatchingStrategy()
Returns the editor matching strategy object for editors represented by this editor descriptor, or null if there is no explicit matching strategy specified.

Returns:
the editor matching strategy, or null if none
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