Package com.github.jknack.handlebars
Interface TypeSafeTemplate<T>
- Type Parameters:
T- The root object type.
public interface TypeSafeTemplate<T>
Make handlebars templates type-safe. Users can extend the
TypeSafeTemplate and add new
methods.
Usage:
public interface UserTemplate extends TypeSafeTemplate<User> {
UserTemplate setAge(int age);
UserTemplate setRole(String role);
...
}
UserTemplate template = new Handlebars().compileInline("{{name}} is {{age}} years old!")
.as(UserTemplate.class);
template.setAge(32);
assertEquals("Edgar is 32 years old!", template.apply(new User("Edgar")));
- Since:
- 0.10.0
- See Also:
-
Method Summary
-
Method Details
-
apply
Merge the template tree using the given context.- Parameters:
context- The context object. May be null.writer- The writer object. Required.- Throws:
IOException- If a resource cannot be loaded.
-
apply
Merge the template tree using the given context.- Parameters:
context- The context object. May be null.- Returns:
- The resulting template.
- Throws:
IOException- If a resource cannot be loaded.
-