Package org.geotools.util

Examples of org.geotools.util.CheckedHashMap


    public Map getParams() {
        return new HashMap(params);
    }

    public void setParams(Map params) {
        this.params = new CheckedHashMap(Serializable.class, Serializable.class);
        if (params != null) {
            this.params.putAll(params);
        }
    }
View Full Code Here


     */
    public void setNamespaces(Map nameSpaces) {
        if (nameSpaces == null) {
            this.namespaces = Collections.EMPTY_MAP;
        } else {
            this.namespaces = new CheckedHashMap(String.class, String.class);
            this.namespaces.putAll(nameSpaces);
        }
    }
View Full Code Here

TOP

Related Classes of org.geotools.util.CheckedHashMap

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.