
org.meridor.stecker.interfaces.ImplementationsAware Maven / Gradle / Ivy
package org.meridor.stecker.interfaces;
import java.util.List;
/**
* Knows about extension points and implementations for all plugins
*/
public interface ImplementationsAware extends PluginImplementationsAware {
/**
* Returns a list of extension points having implementations in current plugin
*
* @param pluginName name of plugin to process
* @return a list of extension points
*/
List getExtensionPoints(String pluginName);
/**
* Returns classes implementing extension point
*
* @param pluginName name of plugin to process
* @param extensionPoint extension point class
* @return a list of implementation classes
*/
List getImplementations(String pluginName, Class extensionPoint);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy