Package com.adobe.xmp.core
Interface XMPNodeVisitor
-
public interface XMPNodeVisitor
A visitor for the XMP nodes. Please note that if you want to handle qualifiers, you need to skip the qualifier facade which is not a node and continue with the visitor on the qualifier tree.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(XMPArray array)
Handles visits of XMPArray nodesvoid
visit(XMPSimple simple)
Handles visits of XMPSimple nodesvoid
visit(XMPStruct struct)
Handles visits of XMPStruct nodes
-
-
-
Method Detail
-
visit
void visit(XMPSimple simple)
Handles visits of XMPSimple nodes- Parameters:
simple
- the node to handle
-
visit
void visit(XMPStruct struct)
Handles visits of XMPStruct nodes- Parameters:
struct
- the node to handle
-
visit
void visit(XMPArray array)
Handles visits of XMPArray nodes- Parameters:
array
- the node to handle
-
-