|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.tools.plugin.Plugin
public class Plugin
The class for Yale plugins. This class is used to encapsulate the .jar file
which must be in the lib/plugins
subdirectory of Yale.
Provides methods for plugin checks, operator registering, and getting
information about the plugin.
Plugin dependencies must be defined in the form
plugin_name1 (plugin_version1) # ... # plugin_nameM (plugin_versionM) < />r>
of the manifest parameter Plugin-Dependencies
. You must
define both the name and the version of the desired plugins and separate them
with "#".
Field Summary | |
---|---|
private static java.util.List<Plugin> |
allPlugins
The collection of all plugins. |
private java.util.jar.JarFile |
archive
The jar archive of the plugin which must be placed in the lib/plugins subdirectory of Yale. |
private PluginClassLoader |
classLoader
The class loader based on the plugin file. |
private java.lang.String |
name
The name of the plugin. |
private java.lang.String |
neededYaleVersion
The Yale version which is needed for this plugin. |
private java.util.List<Dependency> |
pluginDependencies
The plugins and their versions which are needed for this plugin. |
private java.lang.String |
url
The url for this plugin (in WWW). |
private java.lang.String |
vendor
The vendor of the plugin. |
private java.lang.String |
version
The version of the plugin. |
Constructor Summary | |
---|---|
Plugin(java.io.File file)
Creates a new pluging based on the plugin .jar file. |
Method Summary | |
---|---|
private void |
addDependencies(java.lang.String dependencies)
Register plugin dependencies. |
private boolean |
checkDependencies(java.util.List plugins)
Checks the Yale version and plugin dependencies. |
AboutBox |
createAboutBox(java.awt.Frame owner)
Creates the about box for this plugin. |
static void |
findPlugins()
Returns a list of Plugins found in the plugins directory. |
static java.util.List |
getAllPlugins()
Returns the collection of all plugins. |
java.lang.ClassLoader |
getClassLoader()
Returns the class loader of this plugin. |
private void |
getMetaData()
Collects all meta data of the plugin from the manifest file. |
java.lang.String |
getName()
Returns the name of the plugin. |
java.lang.String |
getNeededYaleVersion()
Returns the needed Yale version. |
static Plugin |
getPlugin(java.lang.String name)
Returns the desired plugin. |
java.util.List |
getPluginDependencies()
Returns the plugin dependencies of this plugin. |
java.lang.String |
getVersion()
Returns the version of this plugin. |
protected void |
mergeClassLoader(Plugin other)
Adds the URLs of the given Plugin to class loader of this one. |
void |
register()
Register the operators of this plugin in Yale. |
static void |
registerAllPlugins()
Returns a list of Plugins found in the plugins directory. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private java.util.jar.JarFile archive
lib/plugins
subdirectory of Yale.
private PluginClassLoader classLoader
private java.lang.String name
private java.lang.String version
private java.lang.String vendor
private java.lang.String url
private java.lang.String neededYaleVersion
private java.util.List<Dependency> pluginDependencies
private static java.util.List<Plugin> allPlugins
Constructor Detail |
---|
public Plugin(java.io.File file) throws java.io.IOException
java.io.IOException
Method Detail |
---|
public java.lang.String getName()
public java.lang.String getVersion()
public java.lang.String getNeededYaleVersion()
public java.util.List getPluginDependencies()
public java.lang.ClassLoader getClassLoader()
private boolean checkDependencies(java.util.List plugins)
private void getMetaData()
private void addDependencies(java.lang.String dependencies)
public void register()
public AboutBox createAboutBox(java.awt.Frame owner)
public static void findPlugins()
protected void mergeClassLoader(Plugin other)
public java.lang.String toString()
toString
in class java.lang.Object
public static void registerAllPlugins()
public static java.util.List getAllPlugins()
public static Plugin getPlugin(java.lang.String name)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |