Package org.freeplane.features.encrypt

Examples of org.freeplane.features.encrypt.SingleDesEncrypter


    }
    final ModeController modeController = Controller.getCurrentModeController();
    MFileManager.getController(modeController).newMapFromDefaultTemplate();
    NodeModel node = Controller.getCurrentController().getMap().getRootNode();
    final EncryptionModel encryptedMindMapNode = new EncryptionModel(node);
    encryptedMindMapNode.setEncrypter(new SingleDesEncrypter(password));
    node.addExtension(encryptedMindMapNode);
    Controller.getCurrentModeController().getMapController().nodeChanged(node);
  }
View Full Code Here

TOP

Related Classes of org.freeplane.features.encrypt.SingleDesEncrypter

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.