Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2043573 | 1.4.1 | Btplusnull User | P4 | Resolved | Fixed | hopper |
When printing HTML page that contains applets running in Java Plug-in, exception is thrown in Java Console. The issue is that Java Plug-in will call WEmbeddedFrame.print() for printing the applets, but currently, this method is NOT implemented in Merlin. In sun/awt/windows/WEmbeddedFrame.java
/*
* Print the embedded frame and its children using the specified HDC.
*/
void print(int hdc) {
// REMIND...
throw new InternalError("unimplemented");
/*
WPrintGraphics g = new WEmbeddedPrintGraphics(hdc);
WPrintGraphicsWrapper gw = new WPrintGraphicsWrapper(g, null);
printComponents(gw);
gw.dispose();
*/
}
Printing is critical to customers, so it should be fixed before Merlin FCS. Notice that printing works in releases prior to Merlin.
fixed. verify on winxp with java version "Java2D:08-Apr-02@04:09"
selected testcase:
http://sqesvr/deployment1/ws/tests/pluginPrinting/Kestrel_PluginPrint/Plugin_html/Imageable_Plugin.html
###@###.### 2002-04-09
/*
* Print the embedded frame and its children using the specified HDC.
*/
void print(int hdc) {
// REMIND...
throw new InternalError("unimplemented");
/*
WPrintGraphics g = new WEmbeddedPrintGraphics(hdc);
WPrintGraphicsWrapper gw = new WPrintGraphicsWrapper(g, null);
printComponents(gw);
gw.dispose();
*/
}
Printing is critical to customers, so it should be fixed before Merlin FCS. Notice that printing works in releases prior to Merlin.
fixed. verify on winxp with java version "Java2D:08-Apr-02@04:09"
selected testcase:
http://sqesvr/deployment1/ws/tests/pluginPrinting/Kestrel_PluginPrint/Plugin_html/Imageable_Plugin.html
###@###.### 2002-04-09
- backported by
-
JDK-2043573 WEmbeddedFrame.print is unimplemented
-
- Resolved
-
- relates to
-
JDK-4519411 Printing of Applets has been broken
-
- Resolved
-
-
JDK-4523274 RFE: Applet print support from web browsers through Java 2D
-
- Resolved
-