Package org.freeplane.plugin.script.proxy.Proxy

Examples of org.freeplane.plugin.script.proxy.Proxy.Map


    map = c.newMap();
    assertTrue("the file of a new map should be null", map.getFile() == null);
  }

  public void test_Map_close() {
    Map originalMap = node.getMap();
    map = c.newMap();
    map.getRoot().createChild("child 1");
    assertFalse("a new map should have been opened", originalMap.equals(map));
    map.close(true, false);
    assertEquals("the original map should be selected again", originalMap.getName(), c.getSelected().getMap()
        .getName());
    // let tearDown() some work to do...
    map = c.newMap();
  }
View Full Code Here

TOP

Related Classes of org.freeplane.plugin.script.proxy.Proxy.Map

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.