使用 Eclipse 插件自定义项目类型
我希望使用 Eclipse 插件创建自定义项目类型,其中项目的文件实际上存储在远程服务器上,但正常显示给用户。
我可以处理连接到服务器以获取文件和所有此类业务,但我想知道是否有人可以为我指明如何在项目中向用户显示这些内容的正确方向。
I'm looking to make a custom project type with an Eclipse plugin where the files for the project are actually stored on a remote server but displayed to the user as normal.
I can handle connecting to the server to fetch the files and all of that kind of business, but I was wondering if someone could point me in the right direction of how to display these sorts of things to the user in a project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想要实现一个文件系统而不是一个新的项目类型。
查看扩展点 org.eclipse.core.filesystem.filesystems。
It sounds like you want to implement a file system rather than a new project type.
Have a look at the extension point
org.eclipse.core.filesystem.filesystems
.