I need to get workspace a location using API in Eclipse 4.x platform. I know that I can use
ResourcesPlugin.getWorkspace().getRoot().getLocation().toString();
but I'm wondering if there is another way to do that without static reference to ResourcesPlugin
? For example using Dependency Injection..
Thanks in advance Qinto.