1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
--- oo_1.0.1_src/XmlSearch/src/com/sun/xmlsearch/util/ExtensibleURLStreamHandlerFactory.java.orig 2002-11-25 15:21:05.000000000 -0500
+++ oo_643c_src/XmlSearch/src/com/sun/xmlsearch/util/ExtensibleURLStreamHandlerFactory.java 2002-11-25 15:25:28.000000000 -0500
@@ -79,7 +79,7 @@
Class.forName(className != null
? className
: "sun.net.www.protocol." + protocol + ".Handler");
- return (URLStreamHandler)handlerClass.newInstance();;
+ return (URLStreamHandler)handlerClass.newInstance();
}
catch (Exception e) {
System.err.println(e);
--- sj2/stardiv/app/AppletViewer.java.orig 2002-11-25 15:30:49.000000000 -0500
+++ sj2/stardiv/app/AppletViewer.java 2002-11-25 15:29:15.000000000 -0500
@@ -196,7 +196,7 @@
public AppletViewer(int x, int y, URL doc, Hashtable atts, PrintStream statusMsgStream) {
// resourceViewer = new stardiv.util.ResourceViewer();
// resourceViewer.show();
- System.err.println("#*#*#*:" + sun.awt.ScreenUpdater.updater);
+// System.err.println("#*#*#*:" + sun.awt.ScreenUpdater.updater);
this.statusMsgStream = statusMsgStream;
this.atts = atts;
--- sj2/stardiv/applet/DocumentProxy.java.orig 2002-11-25 22:11:41.000000000 -0500
+++ sj2/stardiv/applet/DocumentProxy.java 2002-11-25 22:16:25.000000000 -0500
@@ -2,9 +2,9 @@
*
* $RCSfile: openoffice-1.0.1-fix-jdk-1.4.0.patch,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.2 $
*
- * last change: $Author: sethbc $ $Date: 2002/12/02 14:43:59 $
+ * last change: $Author: sethbc $ $Date: 2002/12/02 14:43:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -73,6 +73,8 @@
import java.util.Hashtable;
import java.util.Observer;
import java.util.Observable;
+import java.util.Iterator;
+import java.io.InputStream;
import java.net.URL;
@@ -96,6 +98,22 @@
return documentProxy;
}
+ // AppletContext. This method is new since 1.4. We insert it so as to
+ // have the project buildable
+ public void setStream( String key,InputStream stream)
+ throws java.io.IOException {
+ }
+ // AppletContext. This method is new since 1.4. We insert it so as to
+ // have the project buildable
+ public InputStream getStream( String key) {
+ return null;
+ }
+ // AppletContext. This method is new since 1.4. We insert it so as to
+ // have the project buildable
+ public Iterator getStreamKeys() {
+ return null;
+ }
+
/*
** interface cachable methods
|