帮助在 Eclipse 中创建重构插件吗?
可能的重复:
为 Eclipse 编写新的重构插件?
我正在寻找一个向 Eclipse IDE 添加一两个重构的方法(对于 Java 代码)。
我的想法是使用一些已经可用的重构来实现我自己的重构,尽管我不确定这是否完全可能。我用 google 搜索了一下,但没有找到任何关于我必须添加哪些依赖项才能使我的插件能够使用 Eclipse 已经可用的重构类的信息。
如果我能够将 Eclipse 的重构类用于我自己的目的,我什至不必深入研究 Eclipse 的 AST 内容,这绝对是一个很大的优势。
有人有这方面的信息吗?有人有重构插件的经验吗?
谢谢
Possible Duplicate:
Writing a new refactoring plugin for Eclipse?
I'm looking for a way to add one or two refactorings to the Eclipse IDE (for Java code).
My idea was going to use some of the refactorings already available to implement my own although I am not sure this is entirely possible. I googled a bit but didn't find any info on which dependencies I must add to make my plugin capable of using Eclipse's already available refactoring classes.
If I'm able to use Eclipse's refactoring classes for my own purposes I won't even have to delve deep in Eclipse's AST stuff, which would definitively be a big plus.
Anyone has any info on this? Has anyone some experience in coming up with refactoring plugins?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 释放重构的力量。它应该告诉您大部分您需要了解的内容。大多数情况下,您需要 Eclipse Java 开发工具 (JDT) 和重构语言工具包 (LTK)。
Take a look at Unleashing the Power of Refactoring. It should tell you most of what you need to know. Mostly you need the Eclipse Java Development Tools (JDT) and the Refactoring Language Toolkit (LTK).