Skip navigation links

Package com.orchestranetworks.addon.dmdv.template

Provides common classes to build a custom layout for nodes of each tables.

See: Description

Package com.orchestranetworks.addon.dmdv.template Description

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;
        }
    }
      
Skip navigation links

EBX® Add-ons Version 5.3.0.

Copyright TIBCO Software Inc. 2001-2022. All rights reserved.
All third party product and company names and third party marks mentioned in this document are the property of their respective owners and are mentioned for identification.