Package org.jitterbit.integration.client.ui.interchange.location.panel

Examples of org.jitterbit.integration.client.ui.interchange.location.panel.DataLocationPanel


        addInputFields();
        UiUtils.setOpaqueRecursivelySkipDefaults(getUi(), false);
    }

    protected final void applyLocation() throws IntegrationDataPanelException {
        DataLocationPanel locPanel = locationDisplayer.getCurrentLocationPanel();
        locPanel.apply();
    }
View Full Code Here


        DataLocationPanel locPanel = locationDisplayer.getCurrentLocationPanel();
        locPanel.apply();
    }

    protected final DataLocation getDisplayedLocation() {
        DataLocationPanel locPanel = locationDisplayer.getCurrentLocationPanel();
        return locPanel.getDisplayedObject();
    }
View Full Code Here

    public final void onLocationTypeSelected(DataLocationType type) {
        if (type == null) {
            locationDisplayer.showLocationPanel(NO_TYPE);
        } else {
            DataLocationPanel panel = panelFactory.getPanel(type);
            locationDisplayer.showDataLocationPanel(panel);
        }
        fireTypeSelectionChange(type);
    }
View Full Code Here

    private void setLocatable(Locatable locatable) {
        this.locatable = locatable;
        topPanel.setLocatable(locatable);
        DataLocation loc = locatable.getLocation();
        if (loc != null) {
            DataLocationPanel panel = panelFactory.getPanel(loc);
            locationDisplayer.showDataLocationPanel(panel);
            fireTypeSelectionChange(loc.getDataLocationType());
        } else {
            fireTypeSelectionChange(null);
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.location.panel.DataLocationPanel

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.