Package org.codemap.mapview

Examples of org.codemap.mapview.MapController


            @Override
            protected Void performAction(Arguments args) {
                // well ... during shutdown everything can be null. yay.
                CodemapCore plugin = CodemapCore.getPlugin();
                if (plugin == null) return null;
                MapController controller = plugin.getController();
                if (controller == null) return null;
                controller.onRedraw();
                return null;
            }
        };
       
        commands.applyOn(getValues());
View Full Code Here

TOP

Related Classes of org.codemap.mapview.MapController

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.