Package org.locationtech.udig.project.ui.internal

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

Related Classes of org.locationtech.udig.project.ui.internal.MapToolEntry

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.