Gary
Gary

Reputation: 916

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 wondering if someone could point me in the right direction of how to display these sorts of things to the user in a project.

Upvotes: 2

Views: 411

Answers (1)

Tonny Madsen
Tonny Madsen

Reputation: 12718

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.

Upvotes: 3

Related Questions