Examples of EditFeatureProvider


Examples of org.locationtech.udig.project.command.provider.EditFeatureProvider

                map.getEditManager().getSelectedLayer());
       
        ShapeProvider shapeProvider=new ShapeProvider(map);
       
         map.sendCommandASync(new SplitLineCommand(editBlackboard, shapeProvider,
                 new EditFeatureProvider(map), new EditLayerProvider(map),
                 new HashSet<Point>(Arrays.asList(points))));
    }
View Full Code Here

Examples of org.locationtech.udig.project.command.provider.EditFeatureProvider

     * @param feature the feature to modify
     * @param xpath the xpath that identifies an attribute in the current edit feature.
     * @param value the value that will replace the old attribute value.
     */
    public SetAttributeCommand( String xpath, Object value ) {
        editFeature=new EditFeatureProvider(this);
        editLayer=new EditLayerProvider(this);
        this.xpath=xpath;
        this.value=value;
    }
View Full Code Here

Examples of org.locationtech.udig.project.command.provider.EditFeatureProvider

        this(null, null);
    }
   
    public WriteFeatureChangesCommand( IBlockingProvider<SimpleFeature> feature, IBlockingProvider<FeatureStore<SimpleFeatureType, SimpleFeature>> featureStore ) {
        if(feature==null){
            this.featureProvider=new EditFeatureProvider(this);
        }else{
            this.featureProvider=feature;
        }
        if( featureStore==null ){
            this.storeProvider=new EditLayerFeatureStoreProvider(this);
View Full Code Here

Examples of org.locationtech.udig.project.command.provider.EditFeatureProvider

     * @param feature the feature to modify
     * @param xpath the xpath that identifies an attribute in the current edit feature.
     * @param value the value that will replace the old attribute value.
     */
    public SetAttributesCommand( String xpath[], Object value[] ) {
        editFeature=new EditFeatureProvider(this);
        editLayer=new EditLayerProvider(this);
        this.xpath=xpath;
        this.value=value;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.