
com.cookingfox.chefling.impl.helper.CommandContainerVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chefling-di-java Show documentation
Show all versions of chefling-di-java Show documentation
Chefling is a very minimal dependency injection container written in pure Java.
package com.cookingfox.chefling.impl.helper;
import com.cookingfox.chefling.impl.command.CommandContainer;
/**
* Interface for Visitor design pattern, applied to command container instances.
*/
public interface CommandContainerVisitor {
/**
* Perform an operation on the container instance.
*
* @param container The container instance.
*/
void visit(CommandContainer container);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy