Interface ContainerVisitor

  • All Known Implementing Classes:
    LifecycleVisitor

    public interface ContainerVisitor
    Interface realizing a visitor pattern for Container as described in the GoF. The visitor should visit the container and its children.
    Version:
    $Id$
    Author:
    Nicolas Filotto
    • Method Detail

      • visitContainer

        void visitContainer​(Container container)
        Visit a Container that has to accept the visitor.
        Parameters:
        container - the visited container.