Home | History | Annotate | Download | only in impl

Lines Matching refs:xmlNode

157 	 * @param xmlNode the currently processed XML node
161 private static void rdf_NodeElement(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode,
164 int nodeTerm = getRDFTermKind (xmlNode);
176 rdf_NodeElementAttrs (xmp, xmpParent, xmlNode, isTopLevel);
177 rdf_PropertyElementList (xmp, xmpParent, xmlNode, isTopLevel);
200 * @param xmlNode the currently processed XML node
204 private static void rdf_NodeElementAttrs(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode,
210 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++)
212 Node attribute = xmlNode.getAttributes().item(i);
357 * @param xmlNode the currently processed XML node
361 private static void rdf_PropertyElement(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode,
364 int nodeTerm = getRDFTermKind (xmlNode);
371 NamedNodeMap attributes = xmlNode.getAttributes();
399 rdf_EmptyPropertyElement(xmp, xmpParent, xmlNode, isTopLevel);
418 rdf_LiteralPropertyElement (xmp, xmpParent, xmlNode, isTopLevel);
422 rdf_EmptyPropertyElement (xmp, xmpParent, xmlNode, isTopLevel);
430 rdf_ParseTypeResourcePropertyElement(xmp, xmpParent, xmlNode, isTopLevel);
448 if (xmlNode.hasChildNodes())
450 for (int i = 0; i < xmlNode.getChildNodes().getLength(); i++)
452 Node currChild = xmlNode.getChildNodes().item(i);
455 rdf_ResourcePropertyElement (xmp, xmpParent, xmlNode, isTopLevel);
460 rdf_LiteralPropertyElement (xmp, xmpParent, xmlNode, isTopLevel);
464 rdf_EmptyPropertyElement (xmp, xmpParent, xmlNode, isTopLevel);
482 * @param xmlNode the currently processed XML node
487 Node xmlNode, boolean isTopLevel) throws XMPException
489 if (isTopLevel && "iX:changes".equals(xmlNode.getNodeName()))
495 XMPNode newCompound = addChildNode(xmp, xmpParent, xmlNode, "", isTopLevel);
498 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++)
500 Node attribute = xmlNode.getAttributes().item(i);
529 for (i = 0; i < xmlNode.getChildNodes().getLength(); i++)
531 xmlNode.getChildNodes().item(i);
613 * @param xmlNode the currently processed XML node
618 Node xmlNode, boolean isTopLevel) throws XMPException
620 XMPNode newChild = addChildNode (xmp, xmpParent, xmlNode, null, isTopLevel);
622 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++)
624 Node attribute = xmlNode.getAttributes().item(i);
649 for (int i = 0; i < xmlNode.getChildNodes().getLength(); i++)
651 Node child = xmlNode.getChildNodes().item(i);
692 * @param xmlNode the currently processed XML node
697 Node xmlNode, boolean isTopLevel) throws XMPException
699 XMPNode newStruct = addChildNode (xmp, xmpParent, xmlNode, "", isTopLevel);
703 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++)
705 Node attribute = xmlNode.getAttributes().item(i);
731 rdf_PropertyElementList (xmp, newStruct, xmlNode, false);
809 * @param xmlNode the currently processed XML node
813 private static void rdf_EmptyPropertyElement(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode,
823 if (xmlNode.hasChildNodes())
831 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++)
833 Node attribute = xmlNode.getAttributes().item(i);
910 XMPNode childNode = addChildNode(xmp, xmpParent, xmlNode, "", isTopLevel);
928 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++)
930 Node attribute = xmlNode.getAttributes().item(i);
980 * @param xmlNode the currently processed XML node
986 private static XMPNode addChildNode(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode,
990 String namespace = xmlNode.getNamespaceURI();
1003 prefix = xmlNode.getPrefix() != null ? xmlNode.getPrefix() : DEFAULT_PREFIX;
1006 childName = prefix + xmlNode.getLocalName();