Examples of LayoutType


Examples of com.hp.hpl.jena.sdb.store.LayoutType

       
        if ( sdb == null && desc.connDesc != null)
            sdb = SDBConnectionFactory.create(desc.connDesc) ;
       
        DatabaseType dbType = desc.getDbType() ;
        LayoutType layoutType = desc.getLayout() ;
       
        return _create(desc, sdb, dbType, layoutType) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sdb.store.LayoutType

       
        if ( sdb == null && desc.connDesc != null)
            sdb = SDBConnectionFactory.create(desc.connDesc) ;
       
        DatabaseType dbType = desc.getDbType() ;
        LayoutType layoutType = desc.getLayout() ;
       
        return _create(desc, sdb, dbType, layoutType) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sdb.store.LayoutType

       
        if ( sdb == null && desc.connDesc != null)
            sdb = SDBConnectionFactory.create(desc.connDesc) ;
       
        DatabaseType dbType = desc.getDbType() ;
        LayoutType layoutType = desc.getLayout() ;
       
        return _create(desc, sdb, dbType, layoutType) ;
    }
View Full Code Here

Examples of com.volantis.mcs.layouts.common.LayoutType

    private void setLayoutEnabled(boolean enabled) {
        if (providesLayout) {
            // Retrieve the layout type - canvas, montage or null.
            InternalLayoutContentBuilder content =
                    (InternalLayoutContentBuilder) getModelContent();
            LayoutType layoutType = null;
            if (content != null) {
                Layout layout = content.getLayout();
                if (layout != null) {
                    layoutType = layout.getType();
                }
View Full Code Here

Examples of com.volantis.mcs.layouts.common.LayoutType

        Iterator it = variants.iterator();
        while (it.hasNext()) {
            VariantBuilder variant = (VariantBuilder) it.next();
            InternalLayoutContentBuilder content = (InternalLayoutContentBuilder)
                    ((InternalPolicyFactory) POLICY_FACTORY).createLayoutContentBuilder();
            LayoutType type = null;
            Object selected = ((IStructuredSelection) layoutType.
                    getSelection()).getFirstElement();
            if (selected instanceof LayoutType) {
                type = (LayoutType) selected;
            }
View Full Code Here

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

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

    /**
     * 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

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

    }

    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
Copyright © 2018 www.massapi.com. 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.