Package org.freeplane.plugin.workspace.model

Examples of org.freeplane.plugin.workspace.model.WorkspaceModelException


  public void changeNodeName(AWorkspaceTreeNode node, String newName) throws WorkspaceModelException {
    String oldName = node.getName();
    node.setName(newName);
    if (this.hashStringKeyIndex.containsKey(node.getKey())) {
      node.setName(oldName);
      throw new WorkspaceModelException("A Node with the name '" + newName + "' already exists.");
    }
    node.setName(oldName);
    removeIndexOnlyRecursively(node);
    node.setName(newName);
    addIndexOnlyRecursively(node);
View Full Code Here

TOP

Related Classes of org.freeplane.plugin.workspace.model.WorkspaceModelException

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.