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

ACTF/dev/capabilities

From Helios release, ACTF does not provide a plug-in with capability definitions. If integrators wanted to provide an activity for ACTF the following extension can be used as an example:

<extension point="org.eclipse.ui.activities">
 <activity 
   description="This activity includes accessibility confirmation works,
      such as accessibility checking and usability visualization, etc."
   id="org.eclipse.actf.activity"
   name="Accessibility Confirmation">
 </activity>
 <activityPatternBinding
   activityId="org.eclipse.actf.activity"
   pattern="org\.eclipse\.actf\..*/.*">
 </activityPatternBinding>
 <defaultEnablement
   id="org.eclipse.actf.activity"/>
</extension>

Currently ACTF only includes Visualization related UIs. In the future, we'll include UIs for Alternative Interfaces. After that, we'll provide an example that includes progressive discover strategy.

Back to the top