Package org.locationtech.geogig.api

Examples of org.locationtech.geogig.api.FeatureInfo


                                } else {
                                    RevFeatureType featureType = command(RevObjectParse.class)
                                            .setObjectId(
                                                    mergeIntoDiff.getNewObject().getMetadataId())
                                            .call(RevFeatureType.class).get();
                                    FeatureInfo merged = new FeatureInfo(mergedFeature,
                                            featureType, path);
                                    report.addMerged(merged);
                                }
                            }
                        }
View Full Code Here


     * @param path the path of the added feature
     * @param feature the feature
     * @param featureType the feature type of the added feature
     */
    public void addAddedFeature(String path, Feature feature, RevFeatureType featureType) {
        addedFeatures.add(new FeatureInfo(feature, featureType, path));
        addFeatureType(featureType);
    }
View Full Code Here

     * @param path the path of the removed feature
     * @param feature the feature
     * @param featureType the feature type of the removed feature
     */
    public void addRemovedFeature(String path, Feature feature, RevFeatureType featureType) {
        removedFeatures.add(new FeatureInfo(feature, featureType, path));
        addFeatureType(featureType);
    }
View Full Code Here

TOP

Related Classes of org.locationtech.geogig.api.FeatureInfo

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.