com.pojosontheweb.ttt.ITemplate Maven / Gradle / Ivy
package com.pojosontheweb.ttt;
import java.io.IOException;
import java.io.Writer;
public interface ITemplate {
String getContentType();
void render(Writer out) throws IOException;
}
package com.pojosontheweb.ttt;
import java.io.IOException;
import java.io.Writer;
public interface ITemplate {
String getContentType();
void render(Writer out) throws IOException;
}