Home | History | Annotate | Download | only in impl

Lines Matching refs:baseNode

330 					XMPNode baseNode = XMPNodeUtils
333 if (baseNode == null)
349 baseNode = new XMPNode(info.getPrefix() + info.getPropName(), info
351 baseSchema.addChild(baseNode);
352 transplantArrayItemAlias (propertyIt, currProp, baseNode);
363 compareAliasedSubtrees (currProp, baseNode, true);
377 int xdIndex = XMPNodeUtils.lookupLanguageItem(baseNode,
381 itemNode = baseNode.getChild(xdIndex);
384 else if (baseNode.hasChildren())
386 itemNode = baseNode.getChild(1);
391 transplantArrayItemAlias (propertyIt, currProp, baseNode);
517 * @param baseNode the base node of the alias
521 private static void compareAliasedSubtrees(XMPNode aliasNode, XMPNode baseNode,
524 if (!aliasNode.getValue().equals(baseNode.getValue()) ||
525 aliasNode.getChildrenLength() != baseNode.getChildrenLength())
532 (!aliasNode.getName().equals(baseNode.getName()) ||
533 !aliasNode.getOptions().equals(baseNode.getOptions()) ||
534 aliasNode.getQualifierLength() != baseNode.getQualifierLength())
542 bn = baseNode.iterateChildren();
552 bn = baseNode.iterateQualifier();