Package org.jitterbit.integration.activity.ui.component.page

Examples of org.jitterbit.integration.activity.ui.component.page.ActivityPage


    public final void display(final ApplicationWindow appWin, final ServerConnectionService connectionService) {
        new BusyWorker(appWin) {

            @Override
            protected void doWork() {
                ActivityPage page = createPage(connectionService);
                page.setSubjectIcon(ClientIcons.SERVER_16);
                appWin.getEditorService().openEditor(page, AdminViewPageGroup.GROUP);
                page.retrieveRecords();
            }
        }.run();
    }
View Full Code Here


    protected abstract ActivityPage createPage(ActivitySubject subject);

    private ActivityPage createPage(ServerConnectionService connectionService) {
        EntireSystemSubject subject = new EntireSystemSubject();
        subject.setServerConnectionService(connectionService);
        ActivityPage page = createPage(subject);
        return page;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.activity.ui.component.page.ActivityPage

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.