When developing an eclipse plugin, we are using a file named plugin_customization.ini
I wonder where I can find detailed information about which setting can be set with help of this file?
Another question is when product branding and defining an extension point in plugin.xml
file
we can define the extension point by the tag product or by the tag provider! What are differences! And if I am using <provider>
like this
<extension point="org.eclipse.core.runtime.products">
<provider>
<run class="Test"/>
</provider>
</extension>
can I do product branding?
Thanks for help