All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jxls.transform.jexcel.JexcelContext Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package org.jxls.transform.jexcel;

import org.jxls.common.Context;

import java.util.Map;

/**
 * @author Leonid Vysochyn
 */
public class JexcelContext extends Context {
    public static final String JEXCEL_OBJECT_KEY = "util";

    public JexcelContext() {
        varMap.put(JEXCEL_OBJECT_KEY, new JexcelUtil());
    }

    public JexcelContext(Map map) {
        super(map);
        varMap.put(JEXCEL_OBJECT_KEY, new JexcelUtil());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy