Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2003-09-17 02:18:16 +0000
committerAlain Magloire2003-09-17 02:18:16 +0000
commit2d9d50bb2e8be866cd257e738132f27f77b9379b (patch)
tree1c86f1d789ec58d556e7decf886aa2d02406762d /core/org.eclipse.cdt.ui/plugin.xml
parent2c1ef469c64b5201dd3032229c0f013e3dff8abf (diff)
downloadorg.eclipse.cdt-2d9d50bb2e8be866cd257e738132f27f77b9379b.tar.gz
org.eclipse.cdt-2d9d50bb2e8be866cd257e738132f27f77b9379b.tar.xz
org.eclipse.cdt-2d9d50bb2e8be866cd257e738132f27f77b9379b.zip
First draft on BinaryParserBlock to add dynamic
UI contribution for differen BinaryParserPage extension.
Diffstat (limited to 'core/org.eclipse.cdt.ui/plugin.xml')
-rw-r--r--core/org.eclipse.cdt.ui/plugin.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.ui/plugin.xml b/core/org.eclipse.cdt.ui/plugin.xml
index 5896b4154c1..8441c68ab81 100644
--- a/core/org.eclipse.cdt.ui/plugin.xml
+++ b/core/org.eclipse.cdt.ui/plugin.xml
@@ -25,6 +25,8 @@
<extension-point id="CCompletionContributor" name="%completionContributorName"/>
<extension-point id="CElementFilters" name="%elementFiltersName"/>
+ <extension-point id="BinaryParserPage" name="Binary Parser Page"/>
+
<!-- =========================================================================== -->
<!-- Extension Implementation: must implement org.eclipse.jface.text.ITextHover -->
<!-- Purpose: Provide a perspective specific text hovering for CEditor files -->
@@ -602,4 +604,13 @@
</actionSetPartAssociation>
</extension>
+ <extension
+ point="org.eclipse.cdt.ui.BinaryParserPage">
+ <parserPage
+ class="org.eclipse.cdt.ui.dialogs.GNUElfBinaryParserPage"
+ id="ElfBinaryParserPage"
+ parserID="org.eclipse.cdt.core.GNU_ELF">
+ </parserPage>
+ </extension>
+
</plugin>

Back to the top