se.jbee.inject.bootstrap.Bundler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of silk-di Show documentation
Show all versions of silk-di Show documentation
Silk Java dependency injection framework
/*
* Copyright (c) 2012, Jan Bernitt
*
* Licensed under the Apache License, Version 2.0, http://www.apache.org/licenses/LICENSE-2.0
*/
package se.jbee.inject.bootstrap;
/**
* Determines all reachable {@link Bundle}s starting from a root {@link Bundle}.
*
* @author Jan Bernitt ([email protected])
*/
public interface Bundler {
/**
* @param root
* origin of reachable computation
* @return All {@link Bundle}s (their {@link Class}es) that are reachable (installed) when
* starting from the given root {@link Bundle}.
*/
Class extends Bundle>[] bundle( Class extends Bundle> root );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy