[icedtea-web] RFC: fix L&F issues with swing applications
Deepak Bhole
dbhole at redhat.com
Fri Mar 2 12:37:19 PST 2012
* Omair Majid <omajid at redhat.com> [2012-03-02 12:45]:
...
...
Hi Omair,
> *
> * @param enableCodeBase whether to add the code base URL to the classloader
> */
> - protected AppletInstance createApplet(JNLPFile file, boolean enableCodeBase, Container cont) throws LaunchException {
> + protected AppletInstance createApplet(JNLPFile file, boolean enableCodeBase, Container cont, boolean isPlugin) throws LaunchException {
> try {
> JNLPClassLoader loader = JNLPClassLoader.getInstance(file, updatePolicy);
>
> + // Do not create new AppContext if we're using NetX and icedteaplugin.
> + // The plugin needs an AppContext too, but it has to be created earlier.
> + if (context) {
> + if (!isPlugin) {
> + Thread.currentThread().setContextClassLoader(loader);
> + SunToolkit.createNewAppContext();
> + }
> + doPerApplicationAppContextHacks();
> + }
> +
Will there be a case where isPlugin == false but createApplet is called?
Is this when applet-desc is used?
Deepak
More information about the distro-pkg-dev
mailing list