Package org.jitterbit.integration.client.ui.interchange.entity.transformation.page

Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.page.TransformationPage


                logFailureToLaunchMigration("The call was interrupted before the backup copy could be created.", ex);
            }
        }

        private void doMigration(Transformation backup) {
            TransformationPage backupPage = openBackupPage(backup);
            if (backupPage != null) {
                openMigrationTool(backupPage);
                switchToOriginalPage();
            } else {
                logFailureToLaunchMigration("Could not open the backup page.", new Exception());
View Full Code Here


        this.debugActions = debugActions;
    }

    @Override
    protected final IntegrationEntityPage createNewPage(IntegrationEntity e) {
        return new TransformationPage((Transformation) e);
    }
View Full Code Here

       
        public JobImpl(ApplicationWindow appWin) {
            pages = Maps.newHashMap();
            for (Editor editor : appWin.getEditorService().getOpenEditors()) {
                if (editor instanceof TransformationPage) {
                    TransformationPage p = (TransformationPage) editor;
                    pages.put(p.getObject(), p);
                }
            }
        }
View Full Code Here

        private List<Transformation> getTransformationsToDeploy(DeployData data) {
            return data.getProject().getAllEntitiesOfClass(Transformation.class);
        }
       
        private void saveStructuresIfOpen(Transformation tf) {
            TransformationPage page = pages.get(tf);
            if (page != null) {
                saveStructures(page);
            }
        }
View Full Code Here

        ErrorLog.attention(MappingImporterExporterImpl.class, "Failed to import the multiple folders: "
                        + ex.getMessage(), ex);
    }

    private TreeMapper getTreeMapper(Transformation tf) {
        TransformationPage page = getPage(tf);
        return (page == null) ? null : page.getTreeMapper();
    }
View Full Code Here

    @Override
    protected final PopupMenuItem createItem() {
        Editor page = editors.getActiveEditor();
        if (page instanceof TransformationPage) {
            TransformationPage txPage = (TransformationPage) page;
            Menu menu = createMenu(txPage);
            return new MenuBasedPagePopupMenuItem(menu);
        } else {
            return PopupMenuItem.NULL;
        }
View Full Code Here

        private boolean visible;

        @Override
        public void addToPopupMenu(JPopupMenu pm) {
            TransformationPage page = getPage();
            if (page != null) {
                JMenuItem item = createMenuItem(page);
                if (item != null) {
                    pm.add(item);
                }
View Full Code Here

        private boolean visible;

        @Override
        public void addToPopupMenu(JPopupMenu pm) {
            TransformationPage page = getPage();
            if (page != null) {
                JMenu menu = createMenu(page);
                pm.add(menu);
            }
        }
View Full Code Here

        @Override
        public void updateState(PopupMenuSite site, List<?> objects) {
            visible = false;
            jmenu = null;
            if (isSupportedSite(site)) {
                TransformationPage page = getPage(objects);
                if (page != null) {
                    visible = true;
                    jmenu = createMenu(page);
                }
            }
View Full Code Here

            }
        });
    }

    private void prepareMappingTransformation() {
        TransformationPage page = (TransformationPage) pageDisplayer.findOpenPage(mappingTx);
        if (page != null) {
            openMappingsMessageOverlay(page);
            if (isAutoMap()) {
                Runnable autoMapper = createAutoMapperJob(page);
                page.addPostPageLoadingJob(autoMapper);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.entity.transformation.page.TransformationPage

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.