org.jxls.transform.poi.PoiContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-poi Show documentation
Show all versions of jxls-poi Show documentation
Apache POI based Transformer implementation for Jxls library
package org.jxls.transform.poi;
import org.jxls.common.Context;
import java.util.Map;
/**
* Context wrapper for POI
* Automatically adds {@link PoiUtil} class to the context
* @author Leonid Vysochyn
* Date: 6/18/12
*/
public class PoiContext extends Context {
public static final String POI_OBJECT_KEY = "util";
public PoiContext() {
varMap.put(POI_OBJECT_KEY, new PoiUtil());
}
public PoiContext(Map map) {
super(map);
varMap.put(POI_OBJECT_KEY, new PoiUtil());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy