All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mustachejava.Code Maven / Gradle / Ivy

There is a newer version: 0.9.14
Show newest version
package com.github.mustachejava;

import java.io.Writer;

/**
 * Code objects that are executed in order to evaluate the template
 */
public interface Code {
  Writer execute(Writer writer, Object scope);

  Writer execute(Writer writer, Object[] scopes);

  void identity(Writer writer);

  void append(String text);

  Code[] getCodes();

  void setCodes(Code[] codes);

  void init();

  Object clone();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy