Package com.orchestranetworks.addon.dmdv.template
package com.orchestranetworks.addon.dmdv.template
Provides common classes to build a custom layout for nodes of each tables.
The API uses the NodeTemplate as a container for all elements those make up a node.
The elements include: panels, text blocks, images, expand buttons, data tables and indicators.
You can add one or more of these elements and include as layers on a node using NodePanels.
Once you implement the NodeTemplate, an administrator must add the fully qualified class name of the implementation to a graph configuration.
See the Developers Guide for more information.
Create custom node template class implements NodeTemplateFactory:
-
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; } }
-
ClassDescriptionGets the data required for the node value renderer.Generates a custom node template.Defines a value for a node element.