Package org.geotools.feature

Examples of org.geotools.feature.LenientFeatureFactoryImpl


        this.dataStore = dataStore;
        this.json = new GeometryJSON();
        // @todo non scalable in memory buffer
        this.buffer = new StringWriter();
        featureFactory = dataStore.getFeatureFactory() == null
                ? new LenientFeatureFactoryImpl() : dataStore.getFeatureFactory();

        String localName = featureType.getTypeName(); // this will actuall be the full name
        int idx = localName.lastIndexOf(':');
        idx = localName.indexOf('.', idx);
        this.featureClass = localName.substring(idx + 1);
View Full Code Here

TOP

Related Classes of org.geotools.feature.LenientFeatureFactoryImpl

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.