0

I'm developing a custom Eclipse plugin that makes use of Remote System Explorer (of the Eclipse TM project) under the hoods.

My question is, how can I grab the currently selected remote file from my own plugin? I suppose there is some convenience method somewhere, but I can't find it (or I found a number of close matches, but couldn't get anything to work).

Samuel Lampa
  • 4,336
  • 5
  • 42
  • 63
  • What do you mean by grab it - get a reference to the selected object, or get the contents of the file? – katsharp Mar 26 '11 at 17:33

1 Answers1

1

Sounds like you need to make use of the selection service. There is an article here that will help.

katsharp
  • 2,551
  • 24
  • 27