Properties View

Identifier:
org.eclipse.ui.propertiesView

Since:
3.6

Description:
This extension point is used to modify behavior of the Properties view.

Configuration Markup:

<!ELEMENT extension (excludeSources*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT excludeSources EMPTY>

<!ATTLIST excludeSources

id IDREF #REQUIRED>

Use this element to exclude a workbench part from participating in the Properties view.



Examples:
The following example demonstrates how to exclude a view:


   <extension point="org.eclipse.ui.propertiesView">
     <excludeSource id="org.eclipse.help.ui.HelpView"/>
   </extension>

The same code pattern can be used to exclude editors.


Copyright (c) 2009, 2011 IBM Corporation and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0