Package com.adobe.xmp.core
Interface XMPNodeVisitor
-
public interface XMPNodeVisitorA 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 voidvisit(XMPArray array)Handles visits of XMPArray nodesvoidvisit(XMPSimple simple)Handles visits of XMPSimple nodesvoidvisit(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
-
-