Interface JMustacheCustomizer


  • public interface JMustacheCustomizer
    A customizer for Mustache.Compiler instance.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.samskivert.mustache.Mustache.Compiler customize​(com.samskivert.mustache.Mustache.Compiler compiler)
      Customize JMustache Compiler and returns new instance.
    • Method Detail

      • customize

        com.samskivert.mustache.Mustache.Compiler customize​(com.samskivert.mustache.Mustache.Compiler compiler)
        Customize JMustache Compiler and returns new instance. Since Mustache.Compiler is immutable, it is required to returns the new instance that will be registered in the application context.
        Parameters:
        compiler - The initial mustache compiler.
        Returns:
        The customized mustache compiler.