Home | History | Annotate | Download | only in impl

Lines Matching full:parentpath

242 		 * @param parentPath the accumulated path of the node
245 public NodeIterator(XMPNode visitedNode, String parentPath, int index)
255 path = accumulatePath(visitedNode, parentPath, index);
395 * @param parentPath the path up to this node.
399 protected String accumulatePath(XMPNode currNode, String parentPath, int currentIndex)
419 if (parentPath == null || parentPath.length() == 0)
431 return parentPath + separator + segmentName;
525 private String parentPath;
535 * @param parentPath the full path of the former node without the leaf node.
537 public NodeIteratorChildren(XMPNode parentNode, String parentPath)
543 this.parentPath = accumulatePath(parentNode, parentPath, 1);
578 path = accumulatePath(child, parentPath, index);