Package org.vfny.geoserver.control.internal

Examples of org.vfny.geoserver.control.internal.PreferenceStoreImpl


    protected void setUp() throws Exception {
        createPopulatedStore();
        createDefaultsStore();

        Properties props = new Properties();
        this.empty = new PreferenceStoreImpl(new PropertyPreferenceStoreStrategy(
                    props));
    }
View Full Code Here


                    props));
    }

    private void createDefaultsStore() {
        Properties props = new Properties();
        this.defaults = new PreferenceStoreImpl(new PropertyPreferenceStoreStrategy(
                    props));
        defaults.setDefault("string", "setString");
        defaults.setDefault("int", 1);
        defaults.setDefault("boolean", true);
        defaults.setDefault("float", 2.0);
View Full Code Here

        defaults.setDefault("double", 3.0);
    }

    private void createPopulatedStore() {
        Properties populatedProps = new Properties();
        this.populated = new PreferenceStoreImpl(new PropertyPreferenceStoreStrategy(
                    populatedProps));
        populatedProps.put("string", "setString");
        populatedProps.put("int", "1");
        populatedProps.put("boolean", "true");
        populatedProps.put("float", "2.0");
View Full Code Here

TOP

Related Classes of org.vfny.geoserver.control.internal.PreferenceStoreImpl

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.