How do I get the name of the current eclipse project? I'm in a GMF view and need the projectname when some submenu of the popup menu ist used.
|
|
|
|
|
|
|
This GMF class has a straightforward answer, if you have access to the ResourcesPlugin name:
The generic answer (from a potentially outdated code) could be like (if you have an editor opened):
If no editor is opened:
|
|||
|
|
|
|
Using the selection service will give you the currently selected object, you can then check the selection type and get the project based on the selection. If you create an ISelectionListener and register as a listener on the ISelectionService, you'll be notified whenever the active selection changes, and be given a reference to the selection and the owning part.
See this article on the Eclipse selection service for more details. |
|||
|
