Package org.jitterbit.integration.uidelegate.entity.tree

Examples of org.jitterbit.integration.uidelegate.entity.tree.JitterbitConnectNode


            this.config = config;
        }

        @Override
        protected IntegrationEntityTreeModel createEmptyModel() {
            KongaTreeNode root = new JitterbitConnectNode();
            return new IntegrationEntityTreeModel(root);
        }
View Full Code Here


            return new IntegrationEntityTreeModel(root);
        }

        @Override
        protected IntegrationEntityTreeModel createModelForProject(IntegrationProject project) {
            KongaTreeNode root = new JitterbitConnectNode();
            for (EntityType type : config.getTypesToInclude()) {
                if (type.isWizardType()) {
                    IntegrationEntityTreeModel subTree = ProjectTreeFragmentCreator.createTreeModel(project, type);
                    root.addChild(subTree.getRoot());
                }
            }
            return new IntegrationEntityTreeModel(root);
        }
View Full Code Here

        for (int n = 0; n < rootTypes.size(); ++n) {
            EntityType type = rootTypes.get(n);
            RootFolderNode node = new RootFolderNode(project.getRootFolder(type));
            node.setSortOrdinal(1000 - n);
            if (useJitterbitConnectNode && type.isWizardType()) {
                JitterbitConnectNode connectNode = getJitterbitConnectNode(projectNode);
                connectNode.add(node);
            } else {
                projectNode.addChild(node);
            }
        }
    }
View Full Code Here

            }
        }
    }

    private static JitterbitConnectNode getJitterbitConnectNode(ProjectNode projectNode) {
        JitterbitConnectNode node = projectNode.getJitterbitConnectNode();
        if (node == null) {
            node = new JitterbitConnectNode();
            projectNode.add(node);
        }
        return node;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.uidelegate.entity.tree.JitterbitConnectNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.