Examples of scanMapping()


Examples of org.jitterbit.integration.data.entity.transformation.TransformationVariables.scanMapping()

            if (!silently && !(old.equals(expression))) {
                treeMapper.setDirty(true);
            }
        }
        TransformationVariables projectVariables = treeMapper.getDataElements();
        projectVariables.scanMapping(treeMapper.getTransformation(), toReplace);
        Node targetNode = targetTreeComponent.findNode_expandTreeIfNotExist(target);
        targetNode.setFormulaFlag(treeMapper.checkIfFormula());
        try {
          treeMapper.checkDataTypeWarningForOneToOneMapping(targetNode);
          targetNode.updateMappingKits(expression);
View Full Code Here

Examples of org.jitterbit.integration.data.entity.transformation.TransformationVariables.scanMapping()

    private void removeUnsavedDataElements() {
        NodePath targetPath = (mapping != null ? mapping.getTargetPath() :
            (targetDE != null ? new NodePath(targetDE) : null));
        if (targetPath != null) {
            TransformationVariables des = treeMapper.getDataElements();
            des.scanMapping(treeMapper.getTransformation(), targetPath, originalExpression);
        }
    }

    public final void setSimpleXmlElementDisplay(boolean value) {
        TreeComponent tree = getSourceTree();
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.