Package org.geotools.util

Examples of org.geotools.util.CheckedArrayList


    public List getAttributeMappings() {
        return new ArrayList(attributeMappings);
    }

    public void setAttributeMappings(List attributeMappings) {
        this.attributeMappings = new CheckedArrayList(AttributeMapping.class);
        if (attributeMappings != null) {
            this.attributeMappings.addAll(attributeMappings);
        }
    }
View Full Code Here


     *
     * @param targetSchemasUris
     *                DOCUMENT ME!
     */
    public void setTargetSchemasUris(List targetSchemasUris) {
        this.targetSchemasUris = new CheckedArrayList(String.class);

        if (targetSchemasUris != null) {
            this.targetSchemasUris.addAll(targetSchemasUris);
        }
    }
View Full Code Here

     * Set the path of other related types that are mapped separately
     * @param includes
     */
    public void setIncludedTypes(ArrayList<String> includes) {
        if (includes != null) {
            this.includes = new CheckedArrayList(String.class);
            this.includes.addAll(includes);
        }      
    }
View Full Code Here

     */
    public void setSourceDataStores(List /* <SourceDataStore> */dataStores) {
        if (dataStores == null) {
            this.sourceDataStores = Collections.EMPTY_LIST;
        } else {
            this.sourceDataStores = new CheckedArrayList(SourceDataStore.class);
            this.sourceDataStores.addAll(dataStores);
        }
    }
View Full Code Here

TOP

Related Classes of org.geotools.util.CheckedArrayList

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.