Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Eclipse 中创建了一个插件,我可以通过选择菜单中的选项来运行该插件。
如何通过 Java 代码执行这个插件?例如,在做一些操作之前,我想先调用那个插件。
你应该使用:
Platform.getBundle("id_of_plugin").start();
id_of_plugin你的插件的id在哪里。这是 Eclipse Juno 版本的平台 API。
id_of_plugin