Home
last modified time | relevance | path

Searched refs:propNode (Results 1 – 3 of 3) sorted by relevance

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPMetaImpl.java223 XMPNode propNode = XMPNodeUtils.findNode(tree, expPath, false, null); in deleteProperty() local
224 if (propNode != null) in deleteProperty()
226 XMPNodeUtils.deleteNode(propNode); in deleteProperty()
291 final XMPNode propNode = XMPNodeUtils.findNode(tree, expPath, false, null); in doesPropertyExist() local
292 return propNode != null; in doesPropertyExist()
669 final XMPNode propNode = XMPNodeUtils.findNode(tree, expPath, false, null);
671 if (propNode != null)
673 if (valueType != VALUE_STRING && propNode.getOptions().isCompositeProperty())
679 final Object value = evaluateNodeValue(valueType, propNode);
691 return propNode.getOptions();
[all …]
DXMPUtilsImpl.java428 XMPNode propNode = XMPNodeUtils.findNode(xmpImpl.getRoot(), expPath, false, null); in removeProperties() local
429 if (propNode != null) in removeProperties()
435 XMPNode parent = propNode.getParent(); in removeProperties()
436 parent.removeChild(propNode); in removeProperties()
DXMPSerializerRDF.java811 XMPNode propNode = (XMPNode) it.next(); in serializePrettyRDFSchema() local
812 serializePrettyRDFProperty(propNode, false, 3); in serializePrettyRDFSchema()