[icedtea-web] RFC: fix L&F issues with swing applications

Omair Majid omajid at redhat.com
Fri Mar 2 12:43:58 PST 2012


On 03/02/2012 03:37 PM, Deepak Bhole wrote:
> * 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?
> 

Yeah, an applet run using 'javaws /path/to/applet.jnlp' (where the jnlp
file contains an applet-desc) will also result in createApplet() being
invoked (or at least that's what the code paths indicate - see
net.sourceforge.jnlp.Launcher.TgThread.run()).

Cheers,
Omair



More information about the distro-pkg-dev mailing list