Package org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.utils

Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.utils.TreeComponent.findNode()


        return m_TreeMapper.getSourceDataTree();
    }

    public Node getGenerator(NodePath targetDE) {
        TreeComponent targetTree = getTreeMapper().m_targetTreeComponent;
        Node target = targetTree.findNode(targetDE);
        if (target != null) {
            String generatorPath = target.getRootLoopGenerator();
            if (generatorPath != null) {
                return findNode("[" + generatorPath + "]");
            }
View Full Code Here


                    if (m_TreeMapper.findSourceNode(sourceDE) == null) {
                      TreeComponent sourceTC=m_TreeMapper.m_sourceTreeComponent;
                        Node node = sourceTC.expandTreeAndLookForNode(sourceDE);
                      if(sourceDE.endsWith("xsi:nil")){ 
                        String path=sourceDE.substring(0,sourceDE.length()-7);
                        Node sourceEVNode=sourceTC.findNode(path);
                        node=sourceEVNode.createNilNodeToMap();
                      }
                      sourceTC.setDirty();
                        if (node == null) {
                            collectedErrors.append("undefined source DE: ").append(sourceDE).append("\n");
View Full Code Here

        int k=line.indexOf('\t');
        if(k<0)continue;
        String s1=line.substring(0,k);
        String s2=line.substring(k+1);
        Node old_node=old_tree.findNode(bIsInvert?s2:s1);
        Node new_node=new_tree.findNode(bIsInvert?s1:s2);
        if(old_node!=null&&new_node!=null){
          map.m_table_old2new.put(old_node, new_node);
          map.m_table_new2old.put(new_node,old_node);
        } else {
          if(old_node==null&&new_node==null){
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.