JDK-6772067 : Title of out-of-browser applet window must be configurable
  • Type: Enhancement
  • Component: deploy
  • Sub-Component: plugin
  • Affected Version: 6u10
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • OS: windows_xp
  • CPU: generic
  • Submitted: 2008-11-16
  • Updated: 2011-03-09
  • Resolved: 2011-03-08
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 7
7 b125Fixed
Related Reports
Relates :  
Description
Currently the new plugin sets the title of the applet window (the one that appears
in the Windows XP task bar, for example) to the applet's classname.

So, if you have a simple Java applet with classname org.foo.Bar, the user will see
"Bar" in their taskbar.  Even worse, for JavaFX applets, the applet machinery is
in a class called Applet, so the user will always see "Applet" in their taskbar,
which looks very unprofessional and can be confusing if the user has dragged out
more than one applet.

There needs to be a way to control this title.  The plugin should look at the name
of the applet, as in:
    <applet name="My Special Widget">
or some similar solution.

Comments
EVALUATION Added applet param "java_dragged_applet_title" which can be used to configure dragged out applet window title. For draggable JNLP applets, the string assoicated with the "title" attribute in the JNLP file will be used for the title. If it isn't available, it'll fall back to the applet param and then to the applet's main class name. For draggable non-JNLP applets, applet param will be used for the title. If it's not available, the applet's main class name will be used.
18-12-2010