Interface DynamicDelegate
-
public interface DynamicDelegate
Used by implementations ofDynamicTemplate
to obtainBlock
s as replacements for elements within the template. The Blocks are passed to theDynamic
component as informal parameters.- Since:
- 5.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Block
getBlock(String name)
Returns the Block with the given unique name.ComponentResources
getComponentResources()
Returns the component resources (i.e., theDynamic
component), used when creating bindings for expansions located inside the dynamic template.
-
-
-
Method Detail
-
getComponentResources
ComponentResources getComponentResources()
Returns the component resources (i.e., theDynamic
component), 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
-
-