Package org.jitterbit.integration.client.ui.structure.editor.db

Examples of org.jitterbit.integration.client.ui.structure.editor.db.TransformationDatabaseInfo


        this.sourceTarget = sourceTarget;
    }

    @Override
    public StructureToEdit get() {
        TransformationDatabaseInfo dbInfo = getDatabaseInfo();
        return new StructureToEdit(treeMapper.m_Transformation, dbInfo.getStructure(), dbInfo.getDatabaseObjects(),
                        sourceTarget);
    }
View Full Code Here


    public void requestFocus() {
        ui.requestFocus();
    }

    private TargetInsertUpdateModeUi createUi(TreeMapper mapper) {
        TransformationDatabaseInfo dbInfo = getDbInfo(mapper);
        PrimaryKeys[] initialKeys = getInitialKeys(dbInfo);
        TargetInsertUpdateModeUi ui = new TargetInsertUpdateModeUi(dbInfo.getDatabaseObjects(), initialKeys);
        ui.setInsertMode(mapper.getTransformation().getDbInsertMode());
        ui.setIncludeAutoTruncateChoice(false);
        return ui;
    }
View Full Code Here

        lastSaved = ui.getMemento();
    }

    private WhereClauseEditorUi createUi(TreeMapper tm) {
        TransformationDatabaseInfoFactory factory = TransformationDatabaseInfoFactory.fromSourceTree(tm);
        TransformationDatabaseInfo info = factory.createInfo();
        return WhereClauseEditorUiFactory.createEditorUi(info);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.structure.editor.db.TransformationDatabaseInfo

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.