1 /*
2 * joey-gen and its relative products are published under the terms
3 * of the Apache Software License.
4 *
5 * Created on 2005/01/13 17:00:20
6 */
7 package org.asyrinx.joey.gen.core;
8
9 import org.apache.velocity.context.Context;
10
11 /***
12 * @author takeshi
13 */
14 public interface JoeyVelocityGenerator {
15
16 public String parse(String controlTemplate, Context controlContext) throws Exception;
17
18 public String parse(String inputTemplate, String intputEncoding, String outputFile, String outputEncoding,
19 String objectID, Object object) throws Exception;
20
21 }