Reputation: 41087
I have an eclipse plugin which I want convert to an intellij plugin. Is there a quick way to do that. What will be the design patterns I can use?
Upvotes: 8
Views: 6575
Reputation: 2435
first you need fully understand the plugin your are porting.
setup intellij plugin development environment. http://www.jetbrains.org/display/IJOS/Writing+Plug-ins
understand intellij architecture: http://confluence.jetbrains.com/display/IDEADEV/IntelliJ+IDEA+Architectural+Overview
read Getting started with plugin development: http://confluence.jetbrains.com/display/IDEADEV/Getting+Started+with+Plugin+Development http://www.youtube.com/watch?v=AktCFxC9Bx0
the sourcecode of intelliJ is very helpful when your need documentation of some functions or classes.
a plugin sourcecode: https://github.com/whunmr/emacsIDEAs
Upvotes: 4
Reputation: 7521
I think there is no simple and quick way to do this. You need to deeply undestand plugin structure and plugin API of Eclipse and IDEA
Upvotes: 9