* @param value the value that the attribute will be set to.
* @return a new {@linkplain SetAttributeCommand}object
* @see EditCommand
*/
public UndoableMapCommand createSetAttributeCommand( SimpleFeature feature, ILayer layer, String xpath, Object value ) {
return new SetAttributeCommand(new StaticBlockingProvider<SimpleFeature>(feature),
new StaticBlockingProvider<ILayer>(layer), xpath, value);
}