OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:XMPNode
(Results
1 - 8
of
8
) sorted by null
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNormalizer.java
62
XMPNode
tree = xmp.getRoot();
88
private static void tweakOldXMP(
XMPNode
tree) throws XMPException
102
XMPNode
idNode = XMPNodeUtils.findNode (tree, path, true, null);
136
XMPNode
currSchema = (
XMPNode
) it.next();
145
XMPNode
arrayNode = XMPNodeUtils.findChildNode(currSchema, "exif:UserComment",
156
XMPNode
dmCopyright = XMPNodeUtils.findChildNode(currSchema, "xmpDM:copyright",
165
XMPNode
arrayNode = XMPNodeUtils.findChildNode(currSchema, "xmpRights:UsageTerms",
186
private static void normalizeDCArrays(
XMPNode
dcSchema) throws XMPException
190
XMPNode
currProp = dcSchema.getChild(i)
[
all
...]
XMPNode.java
34
* 4. hasLanguage, hasType should be automatically maintained by
XMPNode
38
class
XMPNode
implements Comparable
45
private
XMPNode
parent;
67
* Creates an <code>
XMPNode
</code> with initial values.
73
public
XMPNode
(String name, String value, PropertyOptions options)
87
public
XMPNode
(String name, PropertyOptions options)
109
public
XMPNode
getParent()
119
public
XMPNode
getChild(int index)
121
return (
XMPNode
) getChildren().get(index - 1);
127
* @param node an
XMPNode
[
all
...]
XMPNodeUtils.java
29
* Utilities for <code>
XMPNode
</code>.
72
static
XMPNode
findSchemaNode(
XMPNode
tree, String namespaceURI,
95
static
XMPNode
findSchemaNode(
XMPNode
tree, String namespaceURI, String suggestedPrefix,
100
XMPNode
schemaNode = tree.findChildByName(namespaceURI);
104
schemaNode = new
XMPNode
(namespaceURI,
147
static
XMPNode
findChildNode(
XMPNode
parent, String childName, boolean createNodes)
168
XMPNode
childNode = parent.findChildByName(childName);
[
all
...]
XMPUtilsImpl.java
99
XMPNode
arrayNode = null;
100
XMPNode
currItem = null;
128
currItem = (
XMPNode
) it.next();
183
XMPNode
arrayNode = separateFindCreateArray(schemaNS, arrayName, arrayOptions, xmpImpl);
324
XMPNode
newItem = null;
327
newItem = new
XMPNode
(ARRAY_ITEM_NAME, itemValue, null);
343
private static
XMPNode
separateFindCreateArray(String schemaNS, String arrayName,
355
XMPNode
arrayNode = XMPNodeUtils.findNode(xmp.getRoot(), arrayPath, false, null);
428
XMPNode
propNode = XMPNodeUtils.findNode(xmpImpl.getRoot(), expPath, false, null);
435
XMPNode
parent = propNode.getParent()
[
all
...]
XMPSerializerRDF.java
316
XMPNode
currSchema = (
XMPNode
) it.next();
365
XMPNode
schema = (
XMPNode
) it.next();
373
XMPNode
schema = (
XMPNode
) it.next();
392
XMPNode
schema = (
XMPNode
) it.next();
413
private boolean serializeCompactRDFAttrProps(
XMPNode
parentNode, int indent) throws IOException
419
XMPNode
prop = (XMPNode) it.next()
[
all
...]
ParseRDF.java
127
private static void rdf_NodeElementList(XMPMetaImpl xmp,
XMPNode
xmpParent, Node rdfRdfNode)
161
private static void rdf_NodeElement(XMPMetaImpl xmp,
XMPNode
xmpParent, Node xmlNode,
204
private static void rdf_NodeElementAttrs(XMPMetaImpl xmp,
XMPNode
xmpParent, Node xmlNode,
280
private static void rdf_PropertyElementList(XMPMetaImpl xmp,
XMPNode
xmpParent, Node xmlParent,
361
private static void rdf_PropertyElement(XMPMetaImpl xmp,
XMPNode
xmpParent, Node xmlNode,
486
private static void rdf_ResourcePropertyElement(XMPMetaImpl xmp,
XMPNode
xmpParent,
495
XMPNode
newCompound = addChildNode(xmp, xmpParent, xmlNode, "", isTopLevel);
617
private static void rdf_LiteralPropertyElement(XMPMetaImpl xmp,
XMPNode
xmpParent,
620
XMPNode
newChild = addChildNode (xmp, xmpParent, xmlNode, null, isTopLevel);
696
private static void rdf_ParseTypeResourcePropertyElement(XMPMetaImpl xmp,
XMPNode
xmpParent
[
all
...]
XMPIteratorImpl.java
64
XMPNode
startNode = null;
217
private
XMPNode
visitedNode;
245
public NodeIterator(
XMPNode
visitedNode, String parentPath, int index)
344
XMPNode
child = (
XMPNode
) iterator.next();
399
protected String accumulatePath(
XMPNode
currNode, String parentPath, int currentIndex)
437
* Creates a property info object from an <code>
XMPNode
</code>.
438
* @param node an <code>
XMPNode
</code>
443
protected XMPPropertyInfo createPropertyInfo(final
XMPNode
node, final String baseNS,
537
public NodeIteratorChildren(
XMPNode
parentNode, String parentPath
[
all
...]
XMPMetaImpl.java
56
private
XMPNode
tree;
67
tree = new
XMPNode
(null, null, null);
76
* <code>
XMPNode
</code> contracts.
78
public XMPMetaImpl(
XMPNode
tree)
115
XMPNode
arrayNode = XMPNodeUtils.findNode(tree, arrayPath, false, null);
173
XMPNode
arrayNode = XMPNodeUtils.findNode(tree, arrayPath, false, null);
223
XMPNode
propNode = XMPNodeUtils.findNode(tree, expPath, false, null);
291
final
XMPNode
propNode = XMPNodeUtils.findNode(tree, expPath, false, null);
394
XMPNode
arrayNode = XMPNodeUtils.findNode(tree, arrayPath, false, null);
402
final
XMPNode
itemNode = (XMPNode) result[1]
[
all
...]
Completed in 2706 milliseconds