Package org.jitterbit.application.ui.window.event

Examples of org.jitterbit.application.ui.window.event.ActiveObjectProviderHelper


    private final ActiveObjectProviderHelper activeObjectHelper;

    public ValidationViewImpl(WindowSection section, ValidationModel model, ProjectManager projectManager) {
        super(CONTENT_ID, section);
        activeObjectHelper = new ActiveObjectProviderHelper(this);
        displayer = new ValidationDisplayer(model);
        if (projectManager != null) {
            addResource(new ProjectManagerListenerImpl(projectManager));
        }
        addResource(new DisposableWindowElementResource(displayer));
View Full Code Here


        this.dynamicTree = dynamicTree;
        this.tree = dynamicTree.getAdaptee();
        label = createLabel(name, validIcon, invalidIcon);
        separator = createSeparator();
        configureTree();
        activeObjectHelper = new ActiveObjectProviderHelper(this);
        deployDirtyListener = new DeployDirtyListener();
        EntityMover mover = new InterchangeEntityMover(owner.view.getProjectPersistor(), owner.view.getWindow());
        labelDropHandler = new EntityRootDropHandler(mover);
        label.setTransferHandler(labelDropHandler);
        expanded = true;
View Full Code Here

    private boolean active;
   
    public EntityTreeActiveObjectProvider(IntegrationEntityTree tree, String id) {
        this.tree = tree;
        this.id = id;
        helper = new ActiveObjectProviderHelper(this);
        tree.addKongaTreeListener(new KongaTreeAdapter() {

            @Override
            public void selectionChanged(KongaTreeEvent e) {
                treeSelectionChanged();
View Full Code Here

    }

    public ActiveObjectPageAction(IntegrationEntityPage page, ApplicationAction encapsulated, ActionDictionary dictionary) {
        super(encapsulated.getID(), dictionary);
        this.page = page;
        helper = new ActiveObjectProviderHelper(this);
        encapsulatedAction = encapsulated;
        activeObjectList = Lists.newArrayList(page.getObject());
    }
View Full Code Here

    private final ExpandCollapseAllToggleAction expansionToggleAction;

    public ProjectSection(MultiTreeContentViewer owner) {
        this.owner = owner;
        this.activeObjectHelper = new ActiveObjectProviderHelper(this);
        this.label = createLabel();
        expansionToggleAction = new ExpandCollapseAllToggleAction();
        dropDownButton = createDropDownButton();
        setProject(null);
    }
View Full Code Here

    public ActiveObjectProvidingTree(String id, KongaTree tree) {
        this.id = id;
        this.tree = tree;
        activeObjectConverter = Functions.identity();
        activeObjectHelper = new ActiveObjectProviderHelper(this);
        tree.addKongaTreeListener(new TreeSelectionListener());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.window.event.ActiveObjectProviderHelper

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.