/* * This file is part of ndogen. * * ndogen is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * ndogen is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ndogen. If not, see <http://www.gnu.org/licenses/>. */ package org.ndogen.watch.task; import java.io.File; import org.ndogen.util.DefaultTemplateLoader; import org.ndogen.util.SingleTemplateLoader; import pI.generator.TemplateProcessor; public class Template implements ContentProvider { ContentProvider provider; private TemplateProcessor templateProcessor; private final String template; public Template(ContentProvider provider, String template) { this.provider = provider; templateProcessor = new TemplateProcessor(); File templateFile = new File(template); if(templateFile.exists()) { templateProcessor.setTemplateLoader(new SingleTemplateLoader(templateFile)); this.template = templateFile.getName(); } else { templateProcessor.setTemplateLoader(new DefaultTemplateLoader()); this.template = template; } } @Override public String getContent() { String content = provider.getContent(); templateProcessor.addData("content", content); String result = templateProcessor.process(this.template, "", "", false, false); return result; } }