git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3605 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Ariel Backenroth
2006-08-24 20:43:08 +00:00
parent 03476e862e
commit 465ae145be
8 changed files with 132 additions and 22 deletions

View File

@@ -20,12 +20,21 @@ import org.w3c.dom.Document;
import java.io.Serializable;
import java.io.Writer;
/**
* Generates a user interface for inputing data into a template.
*/
public interface TemplateInputMethod
extends Serializable
{
/**
* Generates a user interface for inputing data into this template.
*
* @param instanceData provides the xml instance data if available.
* @param tt the template type to generate for
* @param out the writer to write the output to.
*/
public void generate(final InstanceData instanceData,
final TemplateType tt,
final Writer out);
// public String getSchemaInputURL(final TemplateType tt);
}