Custom project type with Eclipse plugin
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 wonderin开发者_C百科g if someone could point me in the right direction of how to display these sorts of things to the user in a project.
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
.
精彩评论