Converting Eclipse plugin to Intellij
I have an eclipse plugin which I want convert to an intellij plugin. Is th开发者_Go百科ere a quick way to do that. What will be the design patterns I can use?
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
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
精彩评论