Package org.jitterbit.integration.client.ui.entity

Examples of org.jitterbit.integration.client.ui.entity.IntegrationEntityList


    private static class Question implements UiProvider {

        private final IntegrationEntityList list;

        public Question(List<IntegrationEntity> items) {
            list = new IntegrationEntityList(items);
        }
View Full Code Here


        return true;
    }

    private boolean overrideReadVeto(ServerItem userOrGroup, KList<? extends IntegrationEntity> vetos) {
        BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 3);
        layout.northToSouth(getTopMessage(userOrGroup), new IntegrationEntityList(vetos), getBottomMessage(userOrGroup));
        DoNotShowAgainQuestion q = new DoNotShowAgainQuestion(layout, Strings.get("Permissions.Cache.Override.Title"),
                        AskBeforeOverridingReadVetoPreference.INSTANCE, Option.YES_NO, Option.YES, Type.WARNING);
        return q.ask(view.getWindow().getFrame());
    }
View Full Code Here

            message.setChoiceIfCancelled(Choice.CANCEL);
            return message.show(page.getWindow().getFrame());
        }

        private UiProvider createLayout() {
            IntegrationEntityList list = new IntegrationEntityList(transformations);
            BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 3);
            String caption = "You are about to change the structure of this text document. " +
                "The following transformations must be refreshed in order for the new structure to be applied.";
            layout.north(new HtmlLabel(caption, 400)).center(list);
            return layout;
View Full Code Here

    private final IntegrationEntityList list;
   
    private final JCheckBox doNotShowAgain;
   
    private SideEffectsMessage(KList<WebServiceCall> affected) {
        list = new IntegrationEntityList(affected.sort(BY_NAME));
        doNotShowAgain = new KongaCheckBox(ApplicationResources.STRINGS.getString("DoNotShowAgain"));
    }
View Full Code Here

            list = createList(orphans);
        }

        private IntegrationEntityList createList(Collection<IntegrationEntity> orphans) {
            KList<IntegrationEntity> sortedOrphans = KList.fromItems(orphans).sort(new EntityTypeAndNameSorter());
            return new IntegrationEntityList(sortedOrphans);
        }
View Full Code Here

    private final UiProvider entityList;

    private DirtyDelegatesDialog(Window owner, List<IntegrationEntity> dirty) {
        this.owner = owner;
        entityList = new IntegrationEntityList(dirty);
    }
View Full Code Here

        private final HtmlLabel top;
       
        private final HtmlLabel bottom;
       
        public ItemUi(Collection<? extends IntegrationEntity> items, String top, String bottom) {
            list = new IntegrationEntityList(items);
            this.top = new HtmlLabel(top, 400);
            this.bottom = (bottom != null) ? new HtmlLabel(bottom, 400) : null;
        }
View Full Code Here

            dependencies.dispose();
        }
    }

    private boolean isGreenLighted() {
        IntegrationEntityList list = new IntegrationEntityList(affectedTransformations);
        BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 3);
        layout.north("<html>You are about to change the type of this " +
                getLocatable().getID().getEntityType() + ".<br>" +
                "A consequence of this is that following transformations will be deleted:").center(list).south(
                        "This cannot be undone.");
View Full Code Here

    }

    private void createComponents(Collection<? extends IntegrationEntity> required,
                                  Collection<? extends IntegrationEntity> dirty) {
        if (required != null) {
            requiredItems = new IntegrationEntityList(required, 5);
        }
        if (dirty != null) {
            createDirtyItemsTable(KList.convert(dirty));
        }
    }
View Full Code Here

                Strings.get("EditWsdl.Success.Transformations"));
        return layout;
    }
   
    private UiProvider createList() {
        return new IntegrationEntityList(wsCalls);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.entity.IntegrationEntityList

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.