| |
|
| java.lang.Object org.openjx.parser.PluginParser
PluginParser | public class PluginParser (Code) | | This class parses the application file and generates a list of loadable
plugins specified by the XML form.
author: Jared Spigner |
Method Summary | |
public Vector<Plugin> | getPluginList() This method returns the pluginList. | public Vector<Plugin> | getPluginListCTL(boolean flag) This method returns the list of plugins with the control flag set to
true or false. | public boolean | parsePlugins() This method parses the application file and builds a list of plugins to
be loaded by OpenJX. |
PluginParser | public PluginParser(VirtualMachine vm)(Code) | | This is the constructor for the PluginParser class. It creates a new
instance of PluginParser.
Parameters: vm - point to an instance of the Virtual Machine class. |
getPluginList | public Vector<Plugin> getPluginList()(Code) | | This method returns the pluginList.
the plugin list. |
getPluginListCTL | public Vector<Plugin> getPluginListCTL(boolean flag)(Code) | | This method returns the list of plugins with the control flag set to
true or false.
the plugin list with the specified control flag. |
parsePlugins | public boolean parsePlugins()(Code) | | This method parses the application file and builds a list of plugins to
be loaded by OpenJX.
true on success, else false on failure. |
|
|
|