All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cookingfox.chefling.impl.helper.CommandContainerVisitor Maven / Gradle / Ivy

Go to download

Chefling is a very minimal dependency injection container written in pure Java.

There is a newer version: 7.1.1
Show newest version
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