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

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


        applyInsertMode(tx);
        setSourceDocumentId(tx);
    }

    private void applyInsertMode(Transformation tx) {
        DatabaseStructureWizardPageChain targetPages = (DatabaseStructureWizardPageChain) getTargetPages();
        targetPages.applyInsertMode(tx);
    }
View Full Code Here


* @since 4.0.0
*/
final class WizardPages extends ConnectWizardPageChain<DatabaseStructure, DatabaseStructure> {

    public WizardPages(DatabaseToDatabaseWizard wizard, Folders folders, EntityExplorerSupport explorer) {
        super(wizard, folders, new DatabaseStructureWizardPageChain(wizard, explorer, SourceTarget.Source),
                        new DatabaseStructureWizardPageChain(wizard, explorer, SourceTarget.Target));
    }
View Full Code Here

     * Returns the <code>DatabaseStructure</code> representing the source of the
     * <code>Transformation</code>, as created through the wizard.
     */
    @Override
    public DatabaseStructure getSourceStructure() {
        DatabaseStructureWizardPageChain sourcePages = (DatabaseStructureWizardPageChain) getSourcePages();
        return sourcePages.getDefinedStructure();
    }
View Full Code Here

     * Returns the <code>DatabaseStructure</code> representing the target of the
     * <code>Transformation</code>, as created through the wizard.
     */
    @Override
    public DatabaseStructure getTargetStructure() {
        DatabaseStructureWizardPageChain targetPages = (DatabaseStructureWizardPageChain) getTargetPages();
        return targetPages.getDefinedStructure();
    }
View Full Code Here

     *
     * @param tx
     *            the <code>Transformation</code> that was created by the wizard
     */
    public void applyInsertMode(Transformation tx) {
        DatabaseStructureWizardPageChain targetPages = (DatabaseStructureWizardPageChain) getTargetPages();
        targetPages.applyInsertMode(tx);
    }
View Full Code Here

*/
final class WizardPages extends ConnectWizardPageChain<XmlStructure, DatabaseStructure> {

    public WizardPages(XmlToDatabaseWizard wizard, Folders folders, EntityExplorerSupport explorer) {
        super(wizard, folders, createSourcePages(wizard, explorer),
                        new DatabaseStructureWizardPageChain(wizard, explorer, SourceTarget.Target));
    }
View Full Code Here

        return sourcePages.getXmlStructure();
    }

    @Override
    public DatabaseStructure getTargetStructure() {
        DatabaseStructureWizardPageChain targetPages = (DatabaseStructureWizardPageChain) getTargetPages();
        return targetPages.getDefinedStructure();
    }
View Full Code Here

    public void doAdditionalConfiguration(Transformation tx) {
        applyInsertMode(tx);
    }

    private void applyInsertMode(Transformation tx) {
        DatabaseStructureWizardPageChain targetPages = (DatabaseStructureWizardPageChain) getTargetPages();
        targetPages.applyInsertMode(tx);
    }
View Full Code Here

* @since 4.0.0
*/
final class WizardPages extends ConnectWizardPageChain<DatabaseStructure, TextStructure> {

    public WizardPages(DatabaseToTextWizard wizard, ApplicationWindow appWin, Folders folders, EntityExplorerSupport explorer) {
        super(wizard, folders, new DatabaseStructureWizardPageChain(wizard, explorer, SourceTarget.Source),
                        new TargetPages(wizard, appWin, explorer));
    }
View Full Code Here

                        new TargetPages(wizard, appWin, explorer));
    }

    @Override
    public DatabaseStructure getSourceStructure() {
        DatabaseStructureWizardPageChain sourcePages = (DatabaseStructureWizardPageChain) getSourcePages();
        return sourcePages.getDefinedStructure();
    }
View Full Code Here

TOP

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

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.