Home | History | Annotate | Download | only in impl

Lines Matching refs:sourceNode

591 	 * @param sourceNode the source node
598 private static void appendSubtree(XMPMetaImpl destXMP, XMPNode sourceNode, XMPNode destParent,
601 XMPNode destNode = XMPNodeUtils.findChildNode(destParent, sourceNode.getName(), false);
606 valueIsEmpty = sourceNode.getOptions().isSimple() ?
607 sourceNode.getValue() == null || sourceNode.getValue().length() == 0 :
608 !sourceNode.hasChildren();
621 destParent.addChild((XMPNode) sourceNode.clone());
626 destXMP.setNode(destNode, sourceNode.getValue(), sourceNode.getOptions(), true);
628 destNode = (XMPNode) sourceNode.clone();
636 PropertyOptions sourceForm = sourceNode.getOptions();
647 for (Iterator it = sourceNode.iterateChildren(); it.hasNext();)
663 for (Iterator it = sourceNode.iterateChildren(); it.hasNext();)
713 for (Iterator is = sourceNode.iterateChildren(); is.hasNext();)