Home | History | Annotate | Download | only in impl

Lines Matching refs:xmp

12 package com.adobe.xmp.impl;
16 import com.adobe.xmp.XMPConst;
17 import com.adobe.xmp.XMPError;
18 import com.adobe.xmp.XMPException;
19 import com.adobe.xmp.XMPMeta;
20 import com.adobe.xmp.XMPMetaFactory;
21 import com.adobe.xmp.XMPUtils;
22 import com.adobe.xmp.impl.xpath.XMPPath;
23 import com.adobe.xmp.impl.xpath.XMPPathParser;
24 import com.adobe.xmp.options.PropertyOptions;
25 import com.adobe.xmp.properties.XMPAliasInfo;
61 * @param xmp
62 * The XMP object containing the array to be catenated.
83 public static String catenateArrayItems(XMPMeta xmp, String schemaNS, String arrayName,
88 ParameterAsserts.assertImplementation(xmp);
98 XMPMetaImpl xmpImpl = (XMPMetaImpl) xmp;
150 * @param xmp
151 * The XMP object containing the array to be updated.
169 public static void separateArrayItems(XMPMeta xmp, String schemaNS, String arrayName,
179 ParameterAsserts.assertImplementation(xmp);
180 XMPMetaImpl xmpImpl = (XMPMetaImpl) xmp;
339 * @param xmp the xmp object
344 PropertyOptions arrayOptions, XMPMetaImpl xmp) throws XMPException
355 XMPNode arrayNode = XMPNodeUtils.findNode(xmp.getRoot(), arrayPath, false, null);
376 arrayNode = XMPNodeUtils.findNode(xmp.getRoot(), arrayPath, true, arrayOptions
390 * @param xmp
391 * The XMP object containing the properties to be removed.
408 public static void removeProperties(XMPMeta xmp, String schemaNS, String propName,
411 ParameterAsserts.assertImplementation(xmp);
412 XMPMetaImpl xmpImpl = (XMPMetaImpl) xmp;
468 // Lookup the XMP node
507 * @param source The source XMP object.
508 * @param destination The destination XMP object.
590 * @param destXMP The destination XMP object.