Interface DynamicDelegate
- 
public interface DynamicDelegate
Used by implementations ofDynamicTemplateto obtainBlocks as replacements for elements within the template. The Blocks are passed to theDynamiccomponent as informal parameters.- Since:
 - 5.3
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockgetBlock(String name)Returns the Block with the given unique name.ComponentResourcesgetComponentResources()Returns the component resources (i.e., theDynamiccomponent), used when creating bindings for expansions located inside the dynamic template. 
 - 
 
- 
- 
Method Detail
- 
getComponentResources
ComponentResources getComponentResources()
Returns the component resources (i.e., theDynamiccomponent), used when creating bindings for expansions located inside the dynamic template. 
- 
getBlock
Block getBlock(String name)
Returns the Block with the given unique name.- Throws:
 RuntimeException- if no such block exists
 
 - 
 
 -