Package org.freeplane.plugin.script.addons

Examples of org.freeplane.plugin.script.addons.ScriptAddOnProperties


      BufferedInputStream inputStream = null;
      try {
        inputStream = new BufferedInputStream(new FileInputStream(file));
        final IXMLReader reader = new StdXMLReader(inputStream);
        parser.setReader(reader);
        final ScriptAddOnProperties addOn = new ScriptAddOnProperties((XMLElement) parser.parse());
        addOn.setAddOnPropertiesFile(file);
        AddOnsController.getController().registerInstalledAddOn(addOn);
      }
      catch (final Exception e) {
        LogUtils.warn("error parsing " + file, e);
      }
View Full Code Here

TOP

Related Classes of org.freeplane.plugin.script.addons.ScriptAddOnProperties

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.