Uses of Interface
com.github.jknack.handlebars.Helper

Packages that use Helper
com.github.jknack.handlebars   
com.github.jknack.handlebars.helper   
 

Uses of Helper in com.github.jknack.handlebars
 

Classes in com.github.jknack.handlebars that implement Helper
 class StringHelpers
          Commons string function helpers.
 

Methods in com.github.jknack.handlebars that return Helper
<C> Helper<C>
Handlebars.helper(String name)
          Find a helper by it's name.
 

Methods in com.github.jknack.handlebars with parameters of type Helper
<H> Handlebars
Handlebars.registerHelper(String name, Helper<H> helper)
          Register a helper in the helper registry.
 

Uses of Helper in com.github.jknack.handlebars.helper
 

Classes in com.github.jknack.handlebars.helper that implement Helper
 class BlockHelper
          The block helper will replace its section with the partial of the same name if it exists.
 class EachHelper
          You can iterate over a list using the built-in each helper.
 class EmbeddedHelper
          Given: home.hbs
 class IfHelper
          You can use the if helper to conditionally render a block.
 class PartialHelper
          The partial registry helper.
 class PrecompileHelper
          Precompiled a template to JavaScript using handlebars.js.
 class UnlessHelper
          You can use the unless helper as the inverse of the if helper.
 class WithHelper
           Normally, Handlebars templates are evaluated against the context passed into the compiled method.
 

Fields in com.github.jknack.handlebars.helper declared as Helper
static Helper<String> EmbeddedHelper.INSTANCE
          A singleton instance of this helper.
static Helper<Object> UnlessHelper.INSTANCE
          A singleton instance of this helper.
static Helper<Object> PartialHelper.INSTANCE
          A singleton instance of this helper.
static Helper<Object> IfHelper.INSTANCE
          A singleton instance of this helper.
static Helper<Object> WithHelper.INSTANCE
          A singleton instance of this helper.
static Helper<Object> BlockHelper.INSTANCE
          A singleton instance of this helper.
static Helper<Object> EachHelper.INSTANCE
          A singleton instance of this helper.
static Helper<String> PrecompileHelper.INSTANCE
          The default and shared instance.
 



Copyright © 2012. All Rights Reserved.