See: Description
| Interface | Description |
|---|---|
| NodeTemplateContext |
Gets the data required for the node value renderer.
|
| NodeTemplateFactory |
Generates a custom node template.
|
| NodeValueRenderer |
Defines a value for a node element.
|
Implements the NodeTemplateFactory interface to create a custom node template. The interface's build() method returns a NodeTemplate, which represents a node layout:
public class NodeTemplateForEmployee implements NodeTemplateFactory
{
public NodeTemplate build()
{
// build a node template instance
return null;
}
}