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