Property Tabs

This extension point is deprecated

org.eclipse.wst.common.ui.properties.propertyTabs

This extension point is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

This plugin is DEPRECATED. Use org.eclipse.ui.views.properties.tabbed

Describes a list of tabs that will be contributed to the tabbed property sheet page.

<!ELEMENT extension (propertyTabs)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT propertyTabs (propertyTab+)>

<!ATTLIST propertyTabs

contributorId CDATA #REQUIRED>


<!ELEMENT propertyTab EMPTY>

<!ATTLIST propertyTab

label    CDATA #REQUIRED

category CDATA #REQUIRED

afterTab CDATA #IMPLIED

id       CDATA #REQUIRED>


   

<extension point=

"org.eclipse.wst.common.ui.properties.propertyTabs"

>

<propertyTabs contributorId=

"org.eclipse.gef.examples.logicdesigner.LogicEditor"

>

<propertyTab label=

"Location"

category=

"other"

id=

"logic.tab.Location"

/>

<propertyTab label=

"Size"

category=

"other"

aftertab=

"logic.tab.Location"

id=

"logic.tab.Size"

/>

<propertyTab label=

"Element"

category=

"element"

id=

"logic.tab.Element"

/>

</propertyTabs>

</extension>