[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology] Re: Loas resource through eclipse extension

I made it work this way:

     just got name of the file/resource through extension.

and then loaded the file in my code using:

Bundle bundle = Platform.getBundle(extensions[i].getNamespaceIdentifier());
URL url = bundle.getResource(<name of the file>);

Thanks for the reply.