blob: 6b5f465aff3ddff307f23cd45fef40667bc06936 [file] [log] [blame]
package org.apache.tiles.autotag.core.runtime;
import java.io.IOException;
import java.io.Writer;
public interface ModelBody {
String evaluateAsString() throws IOException;
void evaluateWithoutWriting() throws IOException;
void evaluate() throws IOException;
void evaluate(Writer writer) throws IOException;
}