Comment faire modifier une implémentation standard [message #800771] |
Fri, 17 February 2012 08:28 |
Eclipse User |
|
|
|
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 )
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
|
|
|
Powered by
FUDForum. Page generated in 0.03383 seconds