Reputation: 2310
I am doing an application on Blackberry JDK. I want to use an option available for eclipse plugin saying "Do not display Blackberry icon on the Blackberry home screen".
How can I find this option for JDK?
Upvotes: 1
Views: 188
Reputation: 28168
You can mark the application as System Module.
In fact, what the eclipse plugin does is exactly that. If you manually open an eclipse project descriptor (the xml file), you can read it:
IsSystemModule="true"
Upvotes: 1