1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[173143] removing remote property page and remote popup menu extension points

This commit is contained in:
David McKnight 2007-02-07 15:43:16 +00:00
parent 9b25d62b51
commit d6ad1bdf1f

View file

@ -32,26 +32,6 @@ public class DataElementActionFilter implements org.eclipse.ui.IActionFilter {
/**
* Supports Eclipse filtering and enablement.
* eg:<code>
* <extension point="org.eclipse.rse.ui.popupMenus">
* <objectContribution id="xyz.perspective.rse.actions.createprojectcontribution"
* subsytemfactoryid="xyz.files"
* typecategoryfilter="LIBRARIES">
* <action id="xyz.perspective.rse.actions.createproject"
* label="%create_xyz_project"
* tooltip="%create_xyz_project"
* helpContextId="xyz.perspective.rse01"
* enablesFor="1"
* class="xyz.rse.actions.RSECreateXyzProjectAction">
* <enablement>
* <not>
* <objectState name="name" value="SPECIAL*"/>
* </not>
* </enablement>
* </action>
* </objectContribution>
* </extension>
* </code>
*
* The above contribution uses the RSE pop-up extension point to contribute an action
* to any single RSE object but not anything beginning with SPECIAL.