Package org.jitterbit.application.ui.window

Examples of org.jitterbit.application.ui.window.WindowSectionContentProvider


            }
        });
    }

    private void openConsole() {
        WindowSectionContentProvider provider = JobConsoleWindowProviderFactory.newContentProvider();
        getWindow().displayContent(provider, ApplicationWindow.SOUTH, null, null);
    }
View Full Code Here


            }
        });
    }

    private void openLogView(WaitLock waitLock) {
        WindowSectionContentProvider provider = getContentProvider(waitLock);
        getWindow().displayContent(provider, ApplicationWindow.EAST, null, new AddContentWaitIndicator(waitLock));
    }
View Full Code Here

            }
        });
    }

    private void openErrorLog() {
        WindowSectionContentProvider provider = ErrorLogWindowProviderFactory.newContentProvider();
        getWindow().displayContent(provider, ApplicationWindow.SOUTH, null, null);
    }
View Full Code Here

    }

    private void openTestConnectionView() {
        WaitLock waitLock = appWin.startWait();
        IntegrationEntityLookup entityLookup = getProject().getItemLookup();
        WindowSectionContentProvider uiProvider = new TestAllConnectionsViewFactory(entityLookup, pageDisplayer);
        appWin.displayContent(uiProvider, SectionPosition.SOUTH, new ContentUpdater(), new Callback(waitLock));
    }
View Full Code Here

            }
        });
    }
   
    private void executeImpl() {
        WindowSectionContentProvider provider = new TestConnectionHistoryViewFactory(getProjectManager());
        view.getWindow().displayContent(provider, ApplicationWindow.SOUTH, null, null);
    }
View Full Code Here

            }
        });
    }

    private void executeImpl() {
        WindowSectionContentProvider provider = new TestTransformationHistoryViewFactory(getProjectManager());
        view.getWindow().displayContent(provider, ApplicationWindow.SOUTH, null, null);
    }
View Full Code Here

            }
        });
    }

    private void openDataElementsView() {
        WindowSectionContentProvider viewFactory = createViewFactory();
        appWin.displayContent(viewFactory, SectionPosition.SOUTH, null, null);
    }
View Full Code Here

            }
        });
    }

    private void openValidationView() {
        WindowSectionContentProvider provider = getContentProvider();
        appWin.displayContent(provider, ApplicationWindow.SOUTH, null, null);
    }
View Full Code Here

     * Displays the deploy history in the given application window.
     *
     */
    @Override
    public void displayInWindow(ApplicationWindow window) {
        WindowSectionContentProvider provider = new ProjectDeployHistoryViewFactory(projectManager, project, entity);
        ApplicationWindow.SectionPosition position = ApplicationWindow.SOUTH;
        WindowSectionContentUpdater updater = getUpdater();
        AddContentCallback callback = new AddContentWaitIndicator(window.startWait());
        window.displayContent(provider, position, updater, callback);
    }
View Full Code Here

            }
        });
    }

    private void openHistory() {
        WindowSectionContentProvider provider = new TestOperationHistoryViewFactory(getProjectManager());
        view.getWindow().displayContent(provider, ApplicationWindow.SOUTH, null, null);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.window.WindowSectionContentProvider

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.