Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » Problem adding an extension point
Problem adding an extension point [message #51659] Tue, 24 March 2009 06:36 Go to next message
Simone Navari is currently offline Simone NavariFriend
Messages: 3
Registered: July 2009
Junior Member
Hi to everybody,

I've installed latest version of Ganymede RCP/Plugin from eclipse web site
but I've a probrem trying to creare a plugin with an extension: In
"Extensions" tab of MANIFEST editor window I added the
org.eclipse.cdt.core.BinaryParser extension point but if I try to right
click on added item to add my extension, a popup containing only "Generic"
entry is shown. I've tryed with others extension points with the same
result. Can somebody tell me where is my mistake? Isn't it the right way
to create a plugin that extends eclipse components ?

Thank you in advance.
Simone Navari.
Re: Problem adding an extension point [message #51680 is a reply to message #51659] Tue, 24 March 2009 11:03 Go to previous message
Ankur Sharma is currently offline Ankur SharmaFriend
Messages: 84
Registered: July 2009
Member
Simone Navari wrote:
> Hi to everybody,
> I've installed latest version of Ganymede RCP/Plugin from eclipse web
> site but I've a probrem trying to creare a plugin with an extension: In
> "Extensions" tab of MANIFEST editor window I added the
> org.eclipse.cdt.core.BinaryParser extension point but if I try to right
> click on added item to add my extension, a popup containing only
> "Generic" entry is shown. I've tryed with others extension points with
> the same result. Can somebody tell me where is my mistake? Isn't it the
> right way to create a plugin that extends eclipse components ?
>
> Thank you in advance.
> Simone Navari.
>
>
I haven't worked with CDT, but tried this extension point and got the same result as you are getting.
However, on searching for usage of this ext pt., I found this in one plugin.xml

<extension
id="MachO"
name="%MachOParser.name"
point="org.eclipse.cdt.core.BinaryParser">
<cextension>
<run
class="org.eclipse.cdt.utils.macho.parser.MachOParser">
</run>
</cextension>
</extension>

May be you can extend it in similar fashion.

hope that helps,
Ankur..
Re: Problem adding an extension point [message #593851 is a reply to message #51659] Tue, 24 March 2009 11:03 Go to previous message
Ankur Sharma is currently offline Ankur SharmaFriend
Messages: 84
Registered: July 2009
Member
Simone Navari wrote:
> Hi to everybody,
> I've installed latest version of Ganymede RCP/Plugin from eclipse web
> site but I've a probrem trying to creare a plugin with an extension: In
> "Extensions" tab of MANIFEST editor window I added the
> org.eclipse.cdt.core.BinaryParser extension point but if I try to right
> click on added item to add my extension, a popup containing only
> "Generic" entry is shown. I've tryed with others extension points with
> the same result. Can somebody tell me where is my mistake? Isn't it the
> right way to create a plugin that extends eclipse components ?
>
> Thank you in advance.
> Simone Navari.
>
>
I haven't worked with CDT, but tried this extension point and got the same result as you are getting.
However, on searching for usage of this ext pt., I found this in one plugin.xml

<extension
id="MachO"
name="%MachOParser.name"
point="org.eclipse.cdt.core.BinaryParser">
<cextension>
<run
class="org.eclipse.cdt.utils.macho.parser.MachOParser">
</run>
</cextension>
</extension>

May be you can extend it in similar fashion.

hope that helps,
Ankur..
Previous Topic:Problem adding an extension point
Next Topic:Custom Project Problem
Goto Forum:
  


Current Time: Thu Apr 25 16:35:09 GMT 2024

Powered by FUDForum. Page generated in 0.03205 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top