org.webpieces.templatingdev.api.ScriptOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-templating-dev-lib Show documentation
Show all versions of http-templating-dev-lib Show documentation
Templating library using groovy as the scripting language
package org.webpieces.templatingdev.api;
public interface ScriptOutput {
void print(String string);
void println(String string, Token forLineNumberComment);
void println();
}