Package org.locationtech.udig.tools.edit

Examples of org.locationtech.udig.tools.edit.ClearSelection


*/
public class ClearCurrentSelectionActivator implements Activator {

    public void activate( EditToolHandler handler ) {

        ClearSelection clear = new ClearSelection(handler);
        clear.run();

        handler.getContext().sendASyncCommand(
                handler.getContext().getEditFactory().createSetEditFeatureCommand(null,
                        handler.getEditLayer()));
        EditUtils.instance.cancelHideSelection(handler.getEditLayer());
View Full Code Here

TOP

Related Classes of org.locationtech.udig.tools.edit.ClearSelection

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.