如何在 eclipse 插件中向用户类路径添加新条目
我正在尝试添加一个新向导来创建新的模板类。创建类后,我需要将自己的 jar 添加到用户类路径中。 例如 - 我有“my-sdk.jar”。当用户创建新的“MyOwnClass”时,我用我的内容创建一个新类。此内容依赖于my-sdk.jar,才能编译。
如何将此 jar 添加到用户类路径?
I am trying to add a new wizard, that creates new template class. When the class is been created, I need to add my own jar to the user classpath.
For example - I have "my-sdk.jar". When the user create new "MyOwnClass", I create a new class with my content. This content depends on my-sdk.jar, in order to compile.
How do i add this jar to the user classpath?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 JDT API 更新 Eclipse 插件类路径。
有关更完整的示例,请参阅此 JDT 教程。
You can use the JDT APIs to update an eclipse plugin classpath.
See this JDT Tutorial for a more complete example.