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

    Modifier and Type
    Method
    Description
    void
    visit(XMPArray array)
    Handles visits of XMPArray nodes
    void
    visit(XMPSimple simple)
    Handles visits of XMPSimple nodes
    void
    visit(XMPStruct struct)
    Handles visits of XMPStruct nodes
  • Method Details

    • 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