Package org.freeplane.features.mapio

Examples of org.freeplane.features.mapio.MapIO


          return;
        }           
        if(file.getName().toLowerCase().endsWith(".mm") || file.getName().toLowerCase().endsWith(".dcr")) {
          try {
            final URL mapUrl = Compat.fileToUrl(getFile());
            final MapIO mapIO = (MapIO) Controller.getCurrentModeController().getExtension(MapIO.class);
            mapIO.newMap(mapUrl);
//            Controller.getCurrentModeController().getMapController().newMap(mapUrl);
          }
          catch (final Exception e) {
            LogUtils.severe(e);
          }
View Full Code Here


            }
           
          try {
            final URL mapUrl = Compat.fileToUrl(file);
           
            final MapIO mapIO = (MapIO) MModeController.getMModeController().getExtension(MapIO.class);   
           
            mapIO.newMap(mapUrl);
          }
          catch (final Exception e) {
            LogUtils.severe(e);
          }
        }
View Full Code Here

TOP

Related Classes of org.freeplane.features.mapio.MapIO

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.