E - the type being visited.X - type of exception thrown by the visitor. Use
NeverThrownRuntimeException if no exceptions are thrown.public interface IVisitor<E,X extends java.lang.Exception>
| Modifier and Type | Method and Description |
|---|---|
void |
visit(E element)
Visit element.
|