Examples of MapToolEntry


Examples of org.locationtech.udig.project.ui.internal.MapToolEntry

                category.getContribution().incrementSelection();
            }
            category.getContribution().runCurrentTool();
        }
        else if( category != null && category.getContainer() != null ){
            MapToolEntry first = null;
            MapToolEntry victim = null;
            for( Object child : category.getContainer().getChildren() ){
                if( child instanceof MapToolEntry ){
                    MapToolEntry entry = (MapToolEntry) child;                   
                    if( !category.getId().equals( entry.getCategoryId() )){
                        continue; // tool is not from our category
                    }
                    ToolProxy proxy = entry.getMapToolProxy();
                   
                    if( !proxy.isEnabled() ){
                        continue; // skip disabled tools
                    }
                   
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.