Package org.jitterbit.integration.client.ui.interchange.component.page.entity.dependencies

Examples of org.jitterbit.integration.client.ui.interchange.component.page.entity.dependencies.EntityDependenciesModel


    private void installDependenciesModel(IntegrationEntityPage page) {
        IntegrationEntity entity = page.getObject();
        ManagedProject project = ProjectUtils.getManagedProject(page.getObject());
        // This is to allow opening an Editor for an IntegrationEntity that is not yet in the project:
        if (project != null) {
            EntityDependenciesModel dependencies = new ProjectEntityDependenciesModel(entity, project);
            page.getPageModel().setDependencies(dependencies);
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.component.page.entity.dependencies.EntityDependenciesModel

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.