Interface IVisitor
Represents Visitor pattern interface, which declares Visit operation for each ConcreteVisitor
Methods
Visit(Element)
Visit method to apply concrete visitor implementation
Declaration
void Visit(Element element)
Parameters
Type | Name | Description |
---|---|---|
Element | element | Element |