Skip to main content



      Home
Home » Language IDEs » Java Development Tools (JDT) » Comment faire modifier une implémentation standard(Extend extension point with a plugin)
Comment faire modifier une implémentation standard [message #800771] Fri, 17 February 2012 08:28
Eclipse UserFriend
Hello

I would like to extend/redefine extensions defined in a plugin, I do not want to modify directly into the src jar file (This is a makeshift Rolling Eyes )

I a commercial plugin "com.corp.rac.appli", I have a generic extensions defined to define (by sample) a standard Compo1


com.corp.rac.appli\plugin.xml

<extension-point id=" The_Components "name="components" schema="schema/components.exsd"/>
<extension
id = "com.corp.rac.appli"
point = "com.corp.rac.appli.The_Components">
<entry
id = "Compo0"
name = "com.corp.rac.appli.Compo0000" />

<entry
id = "Compo1"
name = "com.corp.rac.appli.CompoXXXX" />
</ extension>



I want to create my plugin "com.stef.rac.custo" to redefine/extend/change this implementation to redefine the name of the standard entry Compo1, and maintains the definition of Compo0

com.stef.rac.custo\plugin.xml
<extension
id = "com.stef.rac.custo"
point = "com.corp.rac.appli.The_Components">
<entry
id = "Compo1"
name = "com.corp.rac.appli.CompoYYYY" />
</ extension>


How should I do to eclipse that takes my definition in primary, What are the rules of the loading platform RCP

With the fragments, is there way to patch the standard commercial inplémentation ?

Thanks for your help
Previous Topic:eclipse plugin-IMarkerResolution-How to remove eclipse's own quick fix items from the list
Next Topic:Run an ActionListener if a radio button is clicked?
Goto Forum:
  


Current Time: Thu May 15 19:40:07 EDT 2025

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

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

Back to the top