| [news.eclipse.technology] Re: Loas resource through eclipse extension |
I made it work this way:
just got name of the file/resource through extension.
Bundle bundle = Platform.getBundle(extensions[i].getNamespaceIdentifier()); URL url = bundle.getResource(<name of the file>);
Thanks for the reply.