Get source code of import plugin of Eclipse
Accepted answer
Jeremy,
using the built-in Plugin Spy from Eclipse (Shift+ALT+F1) it seems that this UI is calling com.ibm.team.workitem.rcp.ui.internal.wizards.inport.WorkItemImportWizard
You can find the associated source code in the RTC SDK which is available for download on jazz.net
Notice that this part of the API is internal so it is not recommended to make extensions since it could change in future editions of RTC. But you might be able to work out your own import wizard from this source.
If this answers your question please mark this as accepted.
- Arne
using the built-in Plugin Spy from Eclipse (Shift+ALT+F1) it seems that this UI is calling com.ibm.team.workitem.rcp.ui.internal.wizards.inport.WorkItemImportWizard
You can find the associated source code in the RTC SDK which is available for download on jazz.net
Notice that this part of the API is internal so it is not recommended to make extensions since it could change in future editions of RTC. But you might be able to work out your own import wizard from this source.
If this answers your question please mark this as accepted.
- Arne
Comments
Hi Arne,
Thank you for your answers .
I found the associated source code in the RTC SDK.
My goal is just to add to this plugin an module to change the .CSV input.
Do you know how proceed to start after changing the import .CSV? What is the first class of the plugin, ImportWorkitemsMainPage.java ?
Best regards
Jérémy