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

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


        this.view = view;
    }

    @Override
    protected PopupMenuItem createItem() {
        UiEntityFactory factory = new InterchangeEntityFactory(view);
        EntityPageLocator pageLocator = new ViewEntityPageDisplayer(view);
        TransformationToOperationFactory transform = new TransformationToOperationFactory(factory);
        transform.setPageLocator(pageLocator);
        return new ItemImpl(transform);
    }
View Full Code Here


        super(view, actionID);
    }

    @Override
    protected void performActionOn(WebServiceCall wsCall) {
        UiEntityFactory factory = new InterchangeEntityFactory(getView());
        UiEntityFactory.Callback callback = new TransformationDecorator(wsCall);
        factory.createEntity(EntityType.Transformation, true, callback);
    }
View Full Code Here

        super(view, actionID);
    }

    @Override
    protected void performActionOn(WebServiceCall wsCall) {
        UiEntityFactory factory = new InterchangeEntityFactory(getView());
        UiEntityFactory.Callback callback = new TransformationDecorator(wsCall);
        factory.createEntity(EntityType.Transformation, true, callback);
    }
View Full Code Here

            }
        });
    }

    private void doExport(Target target) {
        UiEntityFactory factory = new InterchangeEntityFactory(view);
        EntityPageLocator pageLocator = new ViewEntityPageDisplayer(view);
        TargetToSourceFactory transform = new TargetToSourceFactory(factory);
        transform.setPageLocator(pageLocator);
        transform.doTransform(target);
    }
View Full Code Here

            }
        });
    }

    private void doExport(Source source) {
        UiEntityFactory factory = new InterchangeEntityFactory(view);
        EntityPageLocator pageLocator = new ViewEntityPageDisplayer(view);
        SourceToTargetFactory transform = new SourceToTargetFactory(factory);
        transform.setPageLocator(pageLocator);
        transform.doTransform(source);
    }
View Full Code Here

        }

        @Override
        protected ApplicationAction create(InterchangeView view) {
            ProjectManager projectManager = view.getProjectManager();
            UiEntityFactory factory = new InterchangeEntityFactory(view, new ViewEntityPageDisplayer(view));
            return new NewEntityAction(getId(), projectManager, factory, type);
        }
View Full Code Here

TOP

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

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.