Interface Visitor<T>

Type Parameters:
T - the type to visit.
All Known Implementing Classes:
AttributeConditionVisitor, AttrStyleRuleVisitor

public interface Visitor<T>
A visitor (from the 'visitor' pattern).
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    visit(T arg)
    Visit the given object.
  • Method Details

    • visit

      void visit(T arg)
      Visit the given object.
      Parameters:
      arg - the object.