Tagged Questions
The plugin.xml tag has no wiki summary.
3
votes
2answers
367 views
Internationalized strings in Eclipse plugin.xml file are not found when installed in Eclipse application
I have created 2 plugins, implementing an ODA driver plugin and its UI plugin for the BIRT extension to Eclipse.
My plugins both work as expected when eclipse starts up another eclipse application ...
2
votes
1answer
102 views
Eclipse RCP Fast View in Horizontal Orientation
I do know how to register a View in the Fast views bar within a RCP Eclipse application (using plugin.xml). It opens in Vertical orientation. Does anybody know how to tell this view to open in ...
2
votes
2answers
1k views
Eclipse RCP menus & actions: Configure or code?
This is a general question but my current problem revolves around menu handling.
In a normal plugin with contributes menu actions you would configure ActionSets etc in the plugin.xml configuration. ...
1
vote
2answers
68 views
How can we limit the visibility of a pop-up menu in plugin.xml to only a particular folder and it's sub-folders? Does any such way exist?
I am using menuContribution + command along with the <visibleWhen> element in my plugin.xml.
Say there is a particular folder "XYZ" in my Project Structure with subfolders "xyz1" "xyz2".
I ...
1
vote
1answer
45 views
Use a class field in the 'plugin.xml' for an eclipse plugin
I am currently working on a little eclipse plugin and i have to deal with the classic 'plugin.xml' stuff, such as the creation of a nature:
<extension
...
1
vote
2answers
136 views
Are externalised plugin.xml strings available to downstream plugins?
If I have plugin common, with plugin A and B as separate plugins/products, both depending on plugin common.
In plugin common, I externalise the strings in plugin.xml, this gives me %bundle-vendor = ...
1
vote
1answer
238 views
When exactly plugin.xml files from dependencies of my plugin are loaded?
I vahe eclipse rcp app. In my plugin A I use 3rd party plugin B.
In plugin B there is plugin.xml with some extensions. In my plugin A I have added some extensions to extensions defined in plugin B, ...
0
votes
2answers
101 views
How to remove a Category from Import wizard in Eclipse-RCP?
I need to add an import wizard into my eclipse-rcp app. For that I would like to use existing wizard with only my categories. I found couple of examples in the Internet, but they didn't help much.
My ...