Package org.nexml.model

Examples of org.nexml.model.FloatEdge


      }
    }
    for ( PhyloTreeNode tbChildNode : tbNode.getChildNodes() ) {
      Node xmlChildNode = xmlTree.createNode();
      xmlChildNode.setId(tbChildNode.getTreebaseIDString().toString());
      FloatEdge xmlEdge = xmlTree.createEdge(xmlNode, xmlChildNode);
      if ( null != tbChildNode.getBranchLength() ) {
        xmlEdge.setLength(tbChildNode.getBranchLength());
      }
      traverseTreeBaseTree(tbTree, tbChildNode, xmlChildNode, xmlTree);
    }
  }
View Full Code Here

TOP

Related Classes of org.nexml.model.FloatEdge

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.