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

com.cookingfox.chefling.api.command.CreateChildContainerCommand 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.api.command;

import com.cookingfox.chefling.api.CheflingContainer;

public interface CreateChildContainerCommand {

    /**
     * Creates a new container and adds it as a child.
     *
     * @return The created child container.
     * @see CheflingContainer#addChildContainer(CheflingContainer)
     */
    CheflingContainer createChildContainer();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy