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

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


     * Creates a new <tt>TransformationPage</tt> that will display the given
     * <code>Transformation</code>.
     *
     */
    public TransformationPage(Transformation tf) {
        super(new IntegrationEntityPageModel(tf));
        postLoadingService = new PostLoadingService();
        formulaDisplayer = new FormulaDialogDisplayer();
        setHelpId("integration.transformation.mapping");
        nodeFilterChangeHandler = installNodeFilterListener();
        pageActions = Maps.newHashMap();
View Full Code Here


    /**
     * Creates a <code>WebServiceCallPage</code> that displays the given web service call.
     *
     */
    public WebServiceCallPage(WebServiceCall wsCall) {
        super(new IntegrationEntityPageModel(wsCall));
        structureLoader = new StructureLoader();
        structureCache = getStructureCache(wsCall);
        setHelpId("Create_a_Web_Service_Method");
    }
View Full Code Here

    @Override
    protected WebServiceCallPanel createDataPanel() {
        WebServiceCallPanel p = new WebServiceCallPanel(getWindow(), getObject());
        p.setEditWsdlAction(editWsdlAction);
        IntegrationEntityPageModel model = getPageModel();
        for (BoundProperty pc : p.getBoundPropertyControls()) {
            model.bindProperty(pc);
        }
        return p;
    }
View Full Code Here

     * Creates a <tt>TextDocumentPage</tt> which displays the properties of the specified
     * document.
     *
     */
    public TextDocumentPage(TextDocument doc) {
        super(new IntegrationEntityPageModel(doc));
        viewStructureAction = new ViewStructureTreeAction(this);
        setHelpId("integration.textstructure.main");
        addSaveConsequence(new StructureChangeSaveConsequence(this));
    }
View Full Code Here

     * Creates an <code>OperationPage</code> which displays the properties of the specified
     * operation.
     *
     */
    public OperationPage(Operation op) {
        super(new IntegrationEntityPageModel(op));
        graphController = OperationGraphController.READ_ONLY;
        graphSaver = OperationGraphSaver.READ_ONLY;
        layoutStore = GraphLayoutStore.EMPTY;
        activityMonitorHelper = new OperationActivityMonitorPageSite(this);
        addResource(new ScrollPositionSaver(this));
View Full Code Here

    /**
     * Creates a <tt>SchedulePage</tt> which displays the properties of the specified schedule.
     *
     */
    public SchedulePage(Schedule schedule) {
        super(new IntegrationEntityPageModel(schedule));
        setHelpId("integration.schedule.main");
    }
View Full Code Here

    /**
     * Creates a <tt>TargetPage</tt> which displays the properties of the specified target.
     *
     */
    public TargetPage(Target target) {
        super(new IntegrationEntityPageModel(target));
        iconPrefListener = new IconPreferenceListener();
        setHelpId(DEFAULT_HELP_ID);
        DataLocation loc = target.getLocation();
        if (loc != null) {
            setCurrentLocationType(loc.getDataLocationType());
View Full Code Here

     * Creates a <code>JmsMessagePage</code> which displays the properties of the specified JMS
     * message.
     *
     */
    public JmsMessagePage(JmsMessage message) {
        super(new IntegrationEntityPageModel(message));
    }
View Full Code Here

    private ProjectRenamer renamer;
   
    private Action[] projectActions;
   
    public ProjectPage(IntegrationProject project) {
        super(new IntegrationEntityPageModel(project));
    }
View Full Code Here

    /**
     * Creates a <tt>SourcePage</tt> which displays the properties of the specified source.
     *
     */
    public SourcePage(Source source) {
        super(new IntegrationEntityPageModel(source));
        iconPrefListener = new IconPreferenceListener();
        setHelpId(DEFAULT_HELP_ID);
        DataLocation loc = source.getLocation();
        if (loc != null) {
            setCurrentLocationType(loc.getDataLocationType());
View Full Code Here

TOP

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

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.