Package org.locationtech.udig.printing.ui.internal.editor.parts

Examples of org.locationtech.udig.printing.ui.internal.editor.parts.BoxPart


     public static class SelectionToolWithDoubleClick extends SelectionTool{
        
         @Override
        protected boolean handleDoubleClick( int button ) {
             if (getTargetEditPart() instanceof BoxPart) {
                BoxPart part = (BoxPart) getTargetEditPart();
                BoxAction defaultAction = part.getDefaultAction();
                if( defaultAction!=null ){
                    defaultAction.run();
                    return true;
                }
            }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.printing.ui.internal.editor.parts.BoxPart

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.