if (processor == null) {
throw new MiniLangException("Could not find SimpleMapProcessor named " + name + " in XML document resource: " + xmlResource);
}
if (processor != null)
processor.exec(inMap, results, messages, locale, loader);
}
public static void runSimpleMapProcessor(URL xmlURL, String name, Map inMap, Map results, List messages, Locale locale, ClassLoader loader) throws MiniLangException {
if (loader == null)
loader = Thread.currentThread().getContextClassLoader();