Interface ITslNodeVisitor

All Known Implementing Classes:
TslPrinterVisitor

public interface ITslNodeVisitor
Visitor for the tsl nodes.
Since:
7.4
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method is invoked for nodes of the type: CommentNode.
    void
    This method is invoked for nodes of the type: ConditionNode.
    void
    This method is invoked for nodes of the type: FieldNode.
    void
    This method is invoked for nodes of the type: ForeachNode.
    void
    This method is invoked for nodes of the type: NodeList.
    void
    This method is invoked for nodes of the type: TextNode.
  • Method Details

    • accept

      void accept(CommentNode node)
      This method is invoked for nodes of the type: CommentNode.
      Parameters:
      node - The node on which the visit method was invoked.
    • accept

      void accept(ConditionNode node)
      This method is invoked for nodes of the type: ConditionNode.
      Parameters:
      node - The node on which the visit method was invoked.
    • accept

      void accept(FieldNode node)
      This method is invoked for nodes of the type: FieldNode.
      Parameters:
      node - The node on which the visit method was invoked.
    • accept

      void accept(ForeachNode node)
      This method is invoked for nodes of the type: ForeachNode.
      Parameters:
      node - The node on which the visit method was invoked.
    • accept

      void accept(NodeList node)
      This method is invoked for nodes of the type: NodeList.
      Parameters:
      node - The node on which the visit method was invoked.
    • accept

      void accept(TextNode node)
      This method is invoked for nodes of the type: TextNode.
      Parameters:
      node - The node on which the visit method was invoked.