1 2 3 4 5 6 7
namespace jive { public interface Visitable<out T> { void accept(Visitor<T> visitor); } }