IBundle.java from BIRT at Krugle
Show IBundle.java syntax highlighted
/*
* Created on 2005-3-25
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.eclipse.birt.core.framework;
import java.net.URL;
import java.util.Enumeration;
/**
*
* @version $Revision: 1.3 $ $Date: 2005/07/26 22:36:12 $
*/
public interface IBundle
{
Class loadClass(String name) throws ClassNotFoundException;
URL getEntry(String name);
Enumeration getEntryPaths(String path);
}
See more files for this project here