创建具有自己的文件夹结构的 Eclipse 插件
我想用我自己的项目结构开发一个 Eclipse 插件。那么详细来说,在哪里可以定义安装插件后创建自己的项目时应创建的文件夹?
I want to develop an Eclipse plug-in with my own project structure. So in detail, where can I define the folders which should be created when creating my own project after installing the plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是如何创建具有两个文件夹的基本项目的示例:
您可以修改此代码以满足您的需要,并从“新建项目”向导中执行它。
请注意,我发布的代码只是一个示例,我强烈建议您查看 工作区和资源API 来了解有关此主题的更多信息,了解如何添加自己的项目性质等等。
Here's an example of how one would create a bare bones project with two folders:
You can modify this code to suit your needs and execute it from your "New Project" wizard.
Mind you, the code I posted is just an example, I strongly suggest you look at Workspace and Resource API to learn more about this topic, find out how you can add your own project nature and so on.