public String toString() {
return this.name;
}
public ImportFormat getInstance() throws MalformedURLException, ClassNotFoundException, InstantiationException, IllegalAccessException {
URLClassLoader cl = new URLClassLoader(new URL[] {getBasePathUrl()});
Class<?> clazz = Class.forName(className, true, cl);
ImportFormat importFormat = (ImportFormat)clazz.newInstance();
importFormat.setIsCustomImporter(true);
return importFormat;
}