Package org.jitterbit.integration.client.ui.entity.tree

Examples of org.jitterbit.integration.client.ui.entity.tree.DynamicProjectTree$NewItemsHandler


    /**
     * Creates and returns a <code>SingleTreeContentViewer</code> with an empty tree.
     */
    public SingleTreeContentViewer newEmptyTree(InterchangeView view, String id) {
        DynamicProjectTree tree = new ProjectTreeImpl(config);
        return createTree(view, id, tree);
    }
View Full Code Here


        treeRenderer = new IntegrationEntityTreeRenderer();
    }

    public MultiTreeSection createTypeSection(EntityType type) {
        checkArgument(config.isIncluded(type), type + " is not supported");
        DynamicProjectTree tree = new EntityTree(type);
        configureTree(tree.getAdaptee());
        MultiTreeSection section = new MultiTreeSection(owner, type, tree);
        doTypeSpecificConfiguration(type, section);
        return section;
    }
View Full Code Here

    public MultiTreeSection createConnectSection() {
        if (!config.useJitterbitConnectNode()) {
            return null;
        }
        DynamicProjectTree tree = new ConnectTree(config);
        configureTree(tree.getAdaptee());
        // TODO: Validation decorated icon
        return new MultiTreeSection(owner, JitterbitConnectNames.JITTERBIT_CONNECT, ClientIcons.JITTERBIT_CONNECT_24,
                        ClientIcons.JITTERBIT_CONNECT_24, tree);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.entity.tree.DynamicProjectTree$NewItemsHandler

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.