Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Sequoyah/Capabilities

Capability Definition

Currently Sequoyah defines one capability to allow UI elements to be hidden. This capability can be used as an example for integrators to modify or create their own.

  <extension
        point="org.eclipse.ui.activities">
     <activity
           description="Sequoyah UI Contributions"
           id="org.eclipse.sequoyah.capabilities.general"
           name="Sequoyah UI Contributions">
     </activity>
     <category
           description="Sequoyah UI Elements"
           id="org.eclipse.sequoyah.capabilities.category"
           name="Sequoyah (Mobile)">
     </category>
     <categoryActivityBinding
           activityId="org.eclipse.sequoyah.capabilities.general"
           categoryId="org.eclipse.sequoyah.capabilities.category">
     </categoryActivityBinding>
     <activityPatternBinding
           activityId="org.eclipse.sequoyah.capabilities.general"
           isEqualityPattern="false"
           pattern="org\.eclipse\.sequoyah\..*/.*">
     </activityPatternBinding>
     <defaultEnablement
           id="org.eclipse.sequoyah.capabilities.general">
     </defaultEnablement>
  </extension>


SVN link: dev.eclipse.org/svnroot/dsdp/org.eclipse.sequoyah/trunk/org.eclipse.sequoyah/plugins/org.eclipse.sequoyah.capabilities

Progressive Discover Strategy

Sequoyah does not currently provide any "progressive discovery" trigger points.

Back to the top