Package org.jitterbit.integration.client.ui.script.builder.layout

Examples of org.jitterbit.integration.client.ui.script.builder.layout.LayoutType


        selector.setAllowBuiltInVariablesToBeHidden(false);
        return selector;
    }

    private static DataElementsWidget createWidget() {
        LayoutType layout = LayoutTypePreference.get();
        DataElementsWidget widget;
        if (layout == LayoutType.TABS) {
            widget = new SplitDataElementsListWidget();
        } else {
            widget = new DataElementsTreeWidget();
View Full Code Here


    /**
     * Returns the current value of this preference.
     */
    public static LayoutType get() {
        LayoutType type = INSTANCE.get();
        if (!type.isSupported()) {
            type = INSTANCE.getDefaultValue();
        }
        return type;
    }
View Full Code Here

    }

    private static EnumPreference<LayoutType> create() {
        String[] path = { "Script", "UI" };
        String key = "Layout";
        LayoutType def = LayoutType.TABS;
        assert def.isSupported();
        return ApplicationConfiguration.getPreferenceFactory().newEnumPreference(path, key, def, LayoutType.class);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.script.builder.layout.LayoutType

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.