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

Examples of org.jitterbit.integration.client.ui.crom.tree.CromTreeWidget


        this.initialSelection = initialSelection;
        this.tree = createEmptyTree();
    }
   
    private CromTreeWidget createEmptyTree() {
        CromTreeWidget tree = new CromTreeWidget();
        tree.setSelectionMode(SelectionMode.SINGLE_TREE_SELECTION);
        tree.setIncludeLeafNodes(false);
        tree.setDisabledNodeCondition(CromPredicates.notOfType(CROM.CROM_t_Loop));
        tree.addContextMenuAction(new SelectDerivedTypeAction(tree));
        tree.addContextMenuAction(new SelectSubstitutionGroupAction(tree));
        return tree;
    }
View Full Code Here


    public MappingStructureTreeWidget(String title) {
        this(title, null);
    }

    public MappingStructureTreeWidget(String title, MappingTreeStructure structure) {
        tree = new CromTreeWidget();
        treePanel = tree.inTreePanel(title);
        if (structure != null) {
            populate(structure);
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.crom.tree.CromTreeWidget

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.