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

com.britesnow.snow.web.renderer.freemarker.FreemarkerDirectiveContext Maven / Gradle / Ivy

package com.britesnow.snow.web.renderer.freemarker;

import java.util.Map;

import freemarker.core.Environment;

public class FreemarkerDirectiveContext {

    final Environment env;
    final Map paramMap;
    
    public FreemarkerDirectiveContext(Environment env, Map paramMap){
        this.env = env;
        this.paramMap = paramMap;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy