com.x5.template.ChunkFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chunk-templates Show documentation
Show all versions of chunk-templates Show documentation
Chunk Template Engine for Java
package com.x5.template;
import java.util.Map;
import com.x5.template.filters.ChunkFilter;
public interface ChunkFactory
{
public Chunk makeChunk();
public Chunk makeChunk(String templateName);
public Chunk makeChunk(String templateName, String ext);
public Map getFilters();
}