![JAR search and dependency download from the Maven repository](/logo.png)
org.meridor.stecker.interfaces.PluginImplementationsAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stecker-plugin-loader Show documentation
Show all versions of stecker-plugin-loader Show documentation
This is a plugin loading library. Its main purpose is to load extension point implementations from
provided plugins.
The newest version!
package org.meridor.stecker.interfaces;
import java.util.List;
/**
* Knows about extension points and implementations corresponding to them
*/
public interface PluginImplementationsAware {
/**
* Returns a list of present extension points
*
* @return a list of extension points
*/
List getExtensionPoints();
/**
* Returns classes implementing extension point
*
* @param extensionPoint extension point class
* @return a list of implementation classes
*/
List getImplementations(Class extensionPoint);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy