All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.meridor.stecker.interfaces.ImplementationsAware Maven / Gradle / Ivy

Go to download

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 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