public interface PluginSet
PluginSet
interface is recommended to be used
in large applications as a tool for enumerating plugin
classes, i.e. classes that can be added to the application
as extensions. The application should use some mechanism to
enumerate all PluginSet
classes that extend
the application with some plugin sets. For example,
META-INF/services/net.algart.lib.PluginSet file can
be used (please see
"Chapter 13: Introduction to the Service Provider Interfaces"
at java.sun.com site.
Modifier and Type | Method and Description |
---|---|
java.lang.Class[] |
getPlugins()
Returns all plugin classes in this set.
|
java.lang.String |
getVersion()
Returns the version of application-specific plugin subsystem
used by this plugin set.
|