| java.net.URLClassLoader net.xoetrope.builder.editor.plugin.JarClassLoader
JarClassLoader | class JarClassLoader extends URLClassLoader (Code) | | A class loader for loading jar files, both local and remote.
|
Constructor Summary | |
public | JarClassLoader(URL url) Creates a new JarClassLoader for the specified url. |
Method Summary | |
public String | getMainClassName() Returns the name of the jar file main class, or null if
no "Main-Class" manifest attributes was defined. | public void | invokeClass(String name, String[] args) Invokes the application in this jar file given the name of the
main class and an array of arguments. |
XUI_PLUGIN_CLASS | final public static String XUI_PLUGIN_CLASS(Code) | | |
JarClassLoader | public JarClassLoader(URL url)(Code) | | Creates a new JarClassLoader for the specified url.
Parameters: url - the url of the jar file |
getMainClassName | public String getMainClassName() throws IOException(Code) | | Returns the name of the jar file main class, or null if
no "Main-Class" manifest attributes was defined.
|
|
|