Пример #1
0
 /**
  * copyAllAttr Copy all attributes of the current node from the source file into into the current
  * node.
  *
  * @param nfrSource handler on the opened source file
  */
 protected void copyAllAttr(NexusFileReader nfrSource) throws NexusException {
   String sAttrName;
   Hashtable<String, AttributeEntry> listAttr = nfrSource.listAttribute();
   for (Iterator<String> iter = listAttr.keySet().iterator(); iter.hasNext(); ) {
     sAttrName = (String) iter.next();
     copyAttr(sAttrName, nfrSource);
   }
 }