Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

ACTF/dev/capabilities

< ACTF
Revision as of 13:24, 16 May 2010 by Kentarou.jp.ibm.com (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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