public interface Visitable
| Modifier and Type | Method and Description |
|---|---|
<R,A> R |
accept(GenericVisitor<R,A> v,
A arg)
Accept method for visitor support.
|
<A> void |
accept(VoidVisitor<A> v,
A arg)
Accept method for visitor support.
|
<R,A> R accept(GenericVisitor<R,A> v, A arg)
R - the type of the return value of the visitorA - the type the user argument passed to the visitorv - the visitor implementationarg - the argument passed to the visitor (of type A)<A> void accept(VoidVisitor<A> v, A arg)
A - the type the argument passed for the visitorv - the visitor implementationarg - any value relevant for the visitor (of type A)Copyright © 2007–2018. All rights reserved.