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 Summary

    Modifier and Type
    Method
    Description
    void
    Visit a Container that has to accept the visitor.
  • Method Details

    • visitContainer

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