blob: 7d6e55bc7fa6d618f59755f3d7dcca6c0801e04e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.framework.internal.core;
import java.net.URL;
import java.util.Enumeration;
public class ParentPolicy implements IBuddyPolicy {
public Class loadClass(String name) {
// TODO Auto-generated method stub
return null;
}
public URL loadResource(String name) {
// TODO Auto-generated method stub
return null;
}
public Enumeration loadResources(String name) {
// TODO Auto-generated method stub
return null;
}
}