Package gov.nih.mipav.plugins
Interface BundledPlugInInfo
-
public interface BundledPlugInInfo
This interface binds a PlugIn to a PlugInBundle. Every PlugInBundle contains a list of BundledPlugInInfos that may also be PlugIns. These BundledPlugInInfos can be run by specifying an index of the PlugInBundle'srun(int index)
method.- Author:
- mccreedy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getCategory()
Specifies the menu structure of a particular plug-in.java.lang.String
getName()
Returns the name of the plug-in.
-
-
-
Method Detail
-
getCategory
java.lang.String[] getCategory()
Specifies the menu structure of a particular plug-in. This menu structure is, by default, displayed as a sub-menu of a given PlugInBundle.
-
getName
java.lang.String getName()
Returns the name of the plug-in. This could possibly be used for scripting purposes.
-
-