Package org.freeplane.features.nodestyle

Examples of org.freeplane.features.nodestyle.NodeStyleModel.copyTo()


    }

    public void copy(final NodeModel from, final NodeModel to) {
      final NodeStyleModel fromStyle = from.getExtension(NodeStyleModel.class);
      if (fromStyle != null) {
        fromStyle.copyTo(NodeStyleModel.createNodeStyleModel(to));
      }
      final NodeSizeModel fromSize = from.getExtension(NodeSizeModel.class);
      if (fromSize != null) {
        fromSize.copyTo(NodeSizeModel.createNodeSizeModel(to));
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.