blob: c9592a6c8aea4af5785c41463a3ce94662ec6617 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.ote.client;
import java.net.URL;
import org.osgi.framework.Bundle;
/**
* @author Ken J. Aguilar
*/
public class BundleClassLoader extends ClassLoader {
private final Bundle bundle;
public BundleClassLoader(Bundle bundle) {
super(BundleClassLoader.class.getClassLoader());
this.bundle = bundle;
}
@Override
protected Class<?> findClass(String name) throws ClassNotFoundException {
return bundle.loadClass(name);
}
@Override
protected URL findResource(String name) {
return bundle.getResource(name);
}
public Bundle getBundle() {
return bundle;
}
}