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:

  1. 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;
        }
    }