Interface NodeVisitor


public interface NodeVisitor

NodeVisitor interface.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    visit(Node node)
    Visits a node.
  • Method Details

    • visit

      void visit(Node node)
      Visits a node. The call should be expected to occur in a synchronized block. The lock will be node-dependent.
      Parameters:
      node - a Node object.