Package org.jitterbit.util.preference

Examples of org.jitterbit.util.preference.BooleanKeyValue


        return projectFileOption;
    }

    private SourceFileOption createSelectNewFileOption() {
        SourceFileOption newFileOption = new SelectNewFileOption(window, new TestCenterFileStore(),
                        new BooleanKeyValue(ProjectSourceDataFileInputProvider.class));
        return newFileOption;
    }
View Full Code Here


    public HideIncompatibleProjectsSwitch(ProjectLocationsTable table, Version currentVersion) {
        this(table, currentVersion, new EmptyKeyValue<String, Boolean>());
    }

    public HideIncompatibleProjectsSwitch(ProjectLocationsTable table, Version currentVersion, Class<?> prefClass) {
        this(table, currentVersion, new BooleanKeyValue(prefClass));
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.util.preference.BooleanKeyValue

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.