Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-dev] Reg: org.eclipse.ui.activities

Hi,

  I want to filter out "Use Step Filters" view action from Debug view using "org.eclipse.ui.activities" extension point. This action is contributed by "org.eclipse.debug.ui" plugin with "id=org.eclipse.debug.ui.
actions.ToggleStepFilters".

 I tried using this extension point, say,

<extension
         point="org.eclipse.ui.activities">
      <activity
            id="com.test.debug.ui.activity1"
            name="XYZ1">
      </activity>
      <activityPatternBinding
            activityId="com.test.debug.ui.activity1"
            pattern="org\.eclipse\.debug\.ui/org\.eclipse\.debug\.ui\.actions\.ToggleStepFilters">
      </activityPatternBinding>
      <category
            id="com.test.debug.ui.category1"
            name="XYZ">
      </category>
      <categoryActivityBinding
            activityId="com.test.debug.ui.activity1"
            categoryId="com.test.debug.ui.category1">
      </categoryActivityBinding>
   </extension>

But this is not filtering the action from view. I have verified in preference page General -> Capabilities, the defined category "XYZ" is unchecked.

Is there anything which I am missing here?

Thanks in advance,
Sreeram R
Tensilica Inc.

Back to the top