org.codehaus.plexus.component.discovery.ComponentDiscoverer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
package org.codehaus.plexus.component.discovery;
import org.codehaus.classworlds.ClassRealm;
import org.codehaus.plexus.configuration.PlexusConfigurationException;
import org.codehaus.plexus.context.Context;
import java.util.List;
/**
* @author Jason van Zyl
* @version $Id: ComponentDiscoverer.java 1750 2005-04-19 07:45:02Z brett $
*/
public interface ComponentDiscoverer
{
static String ROLE = ComponentDiscoverer.class.getName();
void setManager( ComponentDiscovererManager manager );
List findComponents( Context context, ClassRealm classRealm )
throws PlexusConfigurationException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy