コード例 #1
0
 /**
  * convert a given old datanode to new datanode
  *
  * @param dt the new datatree
  * @param parent the parent of the datanode to be constructed
  * @param oldDataNode the old datanode
  * @return the new datanode
  */
 private DataNode convertDataNode(DataTree dt, DataNode parent, DataNodeV1 oldDataNode) {
   StatPersisted stat = convertStat(oldDataNode.stat);
   DataNode dataNode =
       new DataNode(parent, oldDataNode.data, dt.convertAcls(oldDataNode.acl), stat);
   dataNode.setChildren(oldDataNode.children);
   return dataNode;
 }