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

com.blade.mvc.ui.template.TemplateEngine Maven / Gradle / Ivy

package com.blade.mvc.ui.template;

import com.blade.exception.BladeException;
import com.blade.mvc.ui.ModelAndView;

import java.io.Writer;

/**
 * TemplateEngine Interface, For view layer to display data
 *
 * @author biezhi
 * @since 1.5
 */
public interface TemplateEngine {

    void render(ModelAndView modelAndView, Writer writer) throws BladeException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy