Property Sections

This extension point is deprecated

org.eclipse.wst.common.ui.properties.propertySections

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 sections to be displayed within tabs that will be contributed to the tabbed property sheet page.

<!ELEMENT extension (propertySections)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT propertySections (propertySection+)>

<!ATTLIST propertySections

contributorId CDATA #REQUIRED>


<!ELEMENT propertySection (input+)>

<!ATTLIST propertySection

tab          CDATA #REQUIRED

id           CDATA #REQUIRED

class        CDATA #REQUIRED

afterSection CDATA #IMPLIED

filter       CDATA #IMPLIED

enablesFor   CDATA #IMPLIED>


<!ELEMENT input EMPTY>

<!ATTLIST input

type CDATA #REQUIRED>


   

<extension point=

"org.eclipse.wst.ui.properties.propertySections"

>

<propertySections contributorId=

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

>

<propertySection tab=

"logic.tab.Element"

class=

"org.eclipse.gef.examples.logicdesigner.sections.NameSection"

id=

"logic.section.Name"

>

<input type=

"org.eclipse.gef.examples.logicdesigner.model.LogicElement"

/>

</propertySection>

<propertySection tab=

"logic.tab.Location"

class=

"org.eclipse.gef.examples.logicdesigner.sections.LocationSection"

id=

"logic.section.Location"

>

<input type=

"org.eclipse.gef.examples.logicdesigner.model.LogicSubpart"

/>

</propertySection>

<propertySection tab=

"logic.tab.Size"

class=

"org.eclipse.gef.examples.logicdesigner.sections.SizeSection"

id=

"logic.section.Size"

filter=

"org.eclipse.gef.examples.logicdesigner.sections.LogicElementSizeFilter"

>

<input type=

"org.eclipse.gef.examples.logicdesigner.model.LogicSubpart"

/>

</propertySection>

<propertySection tab=

"logic.tab.Element"

class=

"org.eclipse.gef.examples.logicdesigner.sections.ValueSection"

id=

"logic.section.Value"

>

<input type=

"org.eclipse.gef.examples.logicdesigner.model.LED"

/>

</propertySection>

</propertySections>

</extension>