OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / lib / classpath / ChangeLog
1 2008-06-06  Andrew John Hughes  <gnu_andrew@member.fsf.org>
2
3         * configure.ac: Set version to 0.97.2.
4         * NEWS: Add 0.97.2.
5
6 2008-05-10  Andrew John Hughes  <gnu_andrew@member.fsf.org>
7
8         * vm/reference/gnu/java/lang/management/VMMemoryMXBeanImpl.java:
9         Remove use of 1.5 language constructs.
10
11 2008-06-06  Andrew John Hughes  <gnu_andrew@member.fsf.org>
12
13         * tools/gnu/classpath/tools/common/ClasspathToolParser.java:
14         Fixed indentation and changed to use OptionException.
15         * tools/gnu/classpath/tools/getopt/OptionException.java:
16         (OptionException(String,Throwable)): Added.
17
18 2008-06-03  Robert Schuster  <robertschuster@fsfe.org>
19
20         * tools/gnu/classpath/tools/jar/Main.java:
21         (run): Call different ClasspathToolParser.parse() variant.
22         (getParser): Changed return type to ClasspathToolParser.
23         * tools/gnu/classpath/tools/javah/GcjhMain.java:
24         (getParser): Changed return type to ClasspathToolParser.
25         * tools/gnu/classpath/tools/javah/Main.java:
26         (getParser): Changed return type to ClasspathToolParser.
27         * tools/gnu/classpath/tools/getopt/Parser.java: Make 'programName'
28         protected.
29         * tools/gnu/classpath/tools/common/ClasspathToolParser.java:
30         (parse(String[], FileArgumentCallback,boolean): New method.
31         (parse(String[], boolean): New method.
32         (parseFileList): New method.
33         (parseLine): New method.
34         (AtFileArgumentCallback): New inner class.
35
36 2008-06-03  Andrew John Hughes  <gnu_andrew@member.fsf.org>
37
38         * tools/gnu/classpath/tools/getopt/OptionException.java,
39         * tools/gnu/classpath/tools/jar/Main.java:
40         Revert previous changes to allow Schuster's patch to
41         do the same.
42
43 2008-06-06  Andrew John Hughes  <gnu_andrew@member.fsf.org>
44
45         * java/lang/Integer.java:
46         (parseInt(String, int, boolean)): Disallow "-+".
47
48 2008-05-11  Andrew John Hughes  <gnu_andrew@member.fsf.org>
49
50         Reported by Nicolas Geoffray <nicolas.geoffray@menlina.com>
51         * java/lang/Integer.java:
52         (parseInt(String,int,boolean)): Parse +x
53         as x, not -x.
54
55 2008-06-05  Andrew John Hughes  <gnu_andrew@member.fsf.org>
56
57         * configure.ac:
58         Check for --with-glibj too when disabling
59         the javac check.
60         
61 2008-06-02  Andrew John Hughes  <gnu_andrew@member.fsf.org>
62
63         * tools/gnu/classpath/tools/getopt/OptionException.java:
64         (OptionException(String,Throwable)): New constructor.
65         * tools/gnu/classpath/tools/jar/Main.java:
66         (fileLists): New queue for streams containing lists of files.
67         (HandleFile.NotifyFile(String)): Check for '@' arguments
68         and add to stream queue.
69         (parsed(String)): Add stdin to queue instead of setting flag.
70         (readNames()): Work with the queue rather than just stdin.
71         (run(String[])): Always execute readNames().
72
73 2008-05-06  Andrew John Hughes  <gnu_andrew@member.fsf.org>
74
75         PR classpath/35482
76         * java/lang/String.java:
77         (toLowerCase()): Fix calculation of number
78         of characters to copy.
79         (toLowerCaseTurkish()): Likewise.
80
81 2008-04-18  Mario Torre  <neugens@aicas.com>
82
83         PR classpath/35974
84         * java/util/logging/Logger.java: fix a deadlock and reformat code.
85         Now all the methods of the class get a lock on a static lock, this
86         avoids a lock when getLogger and log are used concurrently.
87
88 2008-04-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
89
90         * m4/gcc_attribute.m4 (GCC_ATTRIBUTE): Fix cache variable name.
91         * tools/Makefile.am (gappletviewer, gjarsigner, gkeytool, gjar)
92         (gnative2ascii, gserialver, gjavah, grmiregistry, gtnameserv)
93         (gorbd, grmid, grmic) [!CREATE_WRAPPERS]: Add stub dependencies
94         for these scripts, to trick automake into hiding the respective
95         rules for the programs below the CREATE_WRAPPERS conditional.
96
97 2008-04-18  Tom Tromey  <tromey@redhat.com>
98
99         * lib/gen-classlist.sh.in: Skip 'sed' steps if no vm_omitlist
100         found.
101
102 2008-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
103
104         * lib/gen-classlist.sh.in: Avoid grepping each omission, by
105         building an awk script with a hash for literal files, and
106         awk regular expressions for the rest.
107         * configure.ac: Call AC_PROG_AWK.
108
109 2008-03-27  Mario Torre  <neugens@aicas.com>
110
111         * gnu/xml/stream/SAXParser.java (getProperty): throw
112         SAXNotRecognizedException instead of SAXNotSupportedException
113         after fall through all known properties.
114         * javax/xml/namespace/QName.java (valueOf): throw
115         IllegalArgumentException if string is null.
116         * java/util/concurrent/CopyOnWriteArrayList.java (lastIndexOf):
117         fixed indentation.
118         (indexOf): likewise. 
119
120 2008-03-26  Mario Torre  <neugens@aicas.com>
121
122         * java/util/concurrent/CopyOnWriteArrayList.java (SubList.set): 
123         (SubList.clear): new method.
124         (SubList.checkMod): fix indentation.
125         (SubList.checkBoundsInclusive):  likewise. 
126         (SubList.checkBoundsExclusive): likewise.
127         (SubList): added synchronization. Now throw
128         IndexOutOfBoundsException instead of IllegalArgumentException
129         when index are out of range.
130         (SubList.size): added synchronization.
131         (SubList.get): likewise.
132         (SubList.listIterator): fixed indentation.
133         (SubList.set): added synchronization. Update the state of the storage
134         after modification.
135         (SubList.add): likewise.
136         (SubList.remove): likewise.
137         (SubList.addAll): likewise.
138
139 2008-03-26  Mario Torre  <neugens@aicas.com>
140
141         * java/util/concurrent/CopyOnWriteArrayList.java (equals): removed
142         useless local variable. 
143         (hashCode): new method.
144
145 2008-03-25  Mario Torre  <neugens@aicas.com>
146
147         * java/util/concurrent/CopyOnWriteArrayList.java (clone): clone method
148         in CopyOnWriteArrayList should just do a shallow copy. Fixed.
149         (equals): new method, override from base class.
150         (toString): likewise.
151
152 2008-03-12  Andrew John Hughes  <gnu_andrew@member.fsf.org>
153
154         * java/util/concurrent/CopyOnWriteArrayList.java:
155         Don't extend AbstractList.
156         (containsAll(Collection)): Implemented.
157         (listIterator()): Likewise.
158         (subList(int,int)): Likewise.
159
160 2008-03-31  Andrew John Hughes  <gnu_andrew@member.fsf.org>
161
162         * doc/www.gnu.org/events/events.wml:
163         Correct layout and fix GSoC link.
164
165 2008-03-30  Andrew John Hughes  <gnu_andrew@member.fsf.org>
166
167         * doc/www.gnu.org/external.wml:
168         Corrected Jalopy tag name.
169         * doc/www.gnu.org/home.wml:
170         Update link to tasks.
171         * doc/www.gnu.org/announce/20080222.wml:
172         Correct IcedTea and builder links.
173         * doc/www.gnu.org/downloads/downloads.wml:
174         Add 0.97 and 0.97.1.
175         * doc/www.gnu.org/events/events.wml:
176         Fix links and add FOSDEMs/GSoC.
177
178 2008-03-24  Andrew John Hughes  <gnu_andrew@member.fsf.org>
179
180         PR classpath/22883
181         * doc/www.gnu.org/home.wml:
182         Fix a typo.
183         * doc/www.gnu.org/docs/docs.wml:
184         Fix links to point to current versions of
185         vmintegration and hacking, and add links to
186         tools.
187
188 2008-03-24  Andrew John Hughes  <gnu_andrew@member.fsf.org>
189
190         PR classpath/22883
191         * doc/www.gnu.org/home.wml:
192         Update home page to reflect current state of
193         affairs.
194
195 2008-03-11  Andrew John Hughes  <gnu_andrew@member.fsf.org>
196
197         * doc/www.gnu.org/newsitems.txt:
198         Add new announcement.
199         * doc/www.gnu.org/announce/20080311.wml:
200         Added.
201         * doc/www.gnu.org/cp-tools/.cvsignore:
202         Ignore generated HTML files.
203
204 2008-03-10  Jim Meyering  <meyering@redhat.com>
205
206         Don't leak upon failed realloc.
207         * native/jni/classpath/jcl.c (JCL_realloc): Upon failed realloc,
208         free the original buffer before throwing the exception.
209
210 2008-03-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
211
212         * doc/cp-hacking.texinfo: Fix some typos.
213         * doc/cp-tools.texinfo: Likewise.
214         * doc/cp-vmintegration.texinfo: Likewise.
215
216 2008-03-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
217
218         * doc/cp-hacking.texinfo: Fix spacing after periods.
219         * doc/cp-tools.texinfo: Likewise.
220         * doc/cp-vmintegration.texinfo: Likewise.
221
222 2008-02-27  Andrew John Hughes  <gnu_andrew@member.fsf.org>
223
224         * configure.ac:
225         Check for sys/loadavg.h.
226         * native/jni/java-lang/gnu_java_lang_management_VMOperatingSystemMXBeanImpl.c:
227         Include sys/loadavg.h if found.
228
229 2008-06-02  Andrew John Hughes  <gnu_andrew@member.fsf.org>
230
231         * include/Makefile.am: Don't delete headers
232         when not rebuilding them.
233         
234 2008-06-01  Andrew John Hughes  <gnu_andrew@member.fsf.org>
235
236         * configure.ac: Only regenerate headers by
237         default if the headers aren't in the source tree.
238
239 2008-06-01  Andrew John Hughes  <gnu_andrew@member.fsf.org>
240
241         * configure.ac: Only run javac check
242         if examples, tools and/or class library are
243         being built.
244         * scripts/check_jni_methods.sh.in:
245         Remove duplicates in the list of JNI methods
246         for when builddir==srcdir.
247         
248 2008-06-01  Andrew John Hughes  <gnu_andrew@member.fsf.org>
249
250         * lib/Makefile.am:
251         Replace explicit mkinstalldirs with $(mkinstalldirs).
252         
253 2008-06-01  Andrew John Hughes  <gnu_andrew@member.fsf.org>
254
255         * scripts/check_jni_methods.sh.in:
256         Search the source directory as well for
257         when headers are in the tarball.
258         
259 2008-06-01  Andrew John Hughes  <gnu_andrew@member.fsf.org>
260
261         * Makefile.am: Replace tools with
262         $(TOOLSDIR).
263         * m4/acinclude.m4: Include option
264         to disable building the tools.
265         
266 2008-06-01  Andrew John Hughes  <gnu_andrew@member.fsf.org>
267
268         * Makefile.am: Use default makedistcheck
269         flags that test all optional dependencies.
270         * configure.ac: Set version to 0.97.2-pre.
271         * include/Makefile.am: Add header files to dist.
272         * lib/Makefile.am: Trick class files into being
273         built for dist, so headers can be generated.
274         
275 2008-03-11  Andrew John Hughes  <gnu_andrew@member.fsf.org>
276
277         * configure.ac: Set version to 0.97.1
278         * NEWS: Add 0.97.1.
279         
280 2008-03-10  Andrew John Hughes  <gnu_andrew@member.fsf.org>
281
282         PR classpath/35422
283         * doc/api/Makefile.am: Include external/jsr166.
284
285 2008-03-04  Robert Schuster  <robertschuster@fsfe.org>
286
287         * gnu/xml/stream/AttributeImpl.java: Changed type field to String.
288         (getDTDType): Changed return type to String.
289         * gnu/xml/stream/XMLEventAllocatorImpl.java:
290         (allocate): Removed wrapping of string in QName object.
291         * gnu/xml/stream/XMLEventFactoryImpl.java:
292         (createAttribute(String, String)): Removed wrapping of string in
293         QName object.
294         (createAttribute(QName, String)): Ditto.
295         (createAttribute(String, String, String, String)): Ditto.
296         * javax/xml/stream/events/Attribute.java:
297         (getDTDType): Changed return type to String.
298
299 2008-03-03  Andrew John Hughes  <gnu_andrew@member.fsf.org>
300
301         * tools/Makefile.am:
302         Distribute property files.
303
304 2008-02-22  Andrew John Hughes  <gnu_andrew@member.fsf.org>
305
306         * NEWS: Set date for 0.97.
307         * configure.ac: Set version to 0.97
308         
309 2008-02-22  Andrew John Hughes  <gnu_andrew@member.fsf.org>
310
311         PR classpath/33751:
312         * configure.ac:
313         Don't check for readdir_r.
314         * native/jni/native-lib/cpio.c:
315         (cpio_readDir): Remove use of readdir_r, zero errno
316         before starting and always leave a \0 at the end after
317         strncpy.
318         * vm/reference/java/io/VMFile.java:
319         (list(String)): Make synchronized.
320         
321 2008-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>
322
323         * gnu/java/util/prefs/EventDispatcher.java:
324         Re-added.
325         * gnu/java/util/prefs/GConfBasedPreferences.java,
326         * gnu/java/util/prefs/gconf/GConfNativePeer.java,
327         * java/util/prefs/AbstractPreferences.java,
328         * native/jni/gconf-peer/GConfNativePeer.c:
329         Regress to 0.96 versions.
330
331 2008-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>
332
333         * java/net/URI.java:
334         (compareTo(URI)): Change comparison sign so it
335         operates in the correct direction.
336         
337 2008-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>
338
339         * m4/acinclude.m4:
340         Remove check for gcjh.
341         * m4/ac_prog_javac.m4:
342         Check for ecj-3.2 and ecj-3.3, and add
343         -Xlint:unchecked for javac.
344         
345 2008-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>
346
347         * gnu/javax/management/Translator.java:
348         (fromJava(Object[],Method)): Don't cast to Class<?>.
349         (fromJava(Object,Type)): Use ParameterizedType
350         and don't assume that List will work for Sets.
351         
352 2008-02-21  David Walluck  <david@jpackage.org>
353
354         PR classpath/27204:
355         * m4/acinclude.m4:
356         (REGEN_WITH_JAY): Handle 'yes' as a default,
357         not a directory and give more user-friendly output.
358         
359 2008-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>
360
361         * gnu/java/util/regex/REException.java:
362         (REException(String,Throwable,int,int)): Added
363         constructor which also includes the cause.
364         * gnu/java/util/regex/RETokenNamedProperty.java:
365         (getHandler(String)): Add support for \p{javaX}.
366         (JavaCategoryHandler): New class.
367         
368 2008-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>
369
370         PR classpath/35274:
371         * m4/acinclude.m4:
372         Increase maximum heap size to 768mb.
373
374 2008-02-21  Roman Kennke  <kennke@aicas.com>
375
376         * java/awt/image/PixelInterleavedSampleModel.java
377         (createCompatibleSampleModel): Adjust scanline stride for new
378         width and optimize band offsets.
379
380 2008-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>
381
382         PR classpath/35111:
383         * resource/com/sun/tools/javac/messages.properties,
384         * resource/gnu/classpath/tools/appletviewer/messages.properties,
385         * resource/gnu/classpath/tools/common/Messages.properties,
386         * resource/gnu/classpath/tools/getopt/Messages.properties,
387         * resource/gnu/classpath/tools/jar/messages.properties,
388         * resource/gnu/classpath/tools/jarsigner/messages.properties,
389         * resource/gnu/classpath/tools/keytool/messages.properties,
390         * resource/gnu/classpath/tools/native2ascii/messages.properties,
391         * resource/gnu/classpath/tools/orbd/messages.properties,
392         * resource/gnu/classpath/tools/rmic/messages.properties,
393         * resource/gnu/classpath/tools/rmid/messages.properties,
394         * resource/gnu/classpath/tools/rmiregistry/messages.properties,
395         * resource/gnu/classpath/tools/serialver/messages.properties,
396         * resource/gnu/classpath/tools/tnameserv/messages.properties,
397         * resource/sun/rmi/rmic/messages.properties:
398         Removed.
399         * tools/Makefile.am:
400         Copy .jav template files and use resource subdirectory
401         of tools.
402         * tools/gnu/classpath/tools/rmic/templates/ImplTie.jav,
403         * tools/gnu/classpath/tools/rmic/templates/Stub.jav,
404         * tools/gnu/classpath/tools/rmic/templates/StubMethod.jav,
405         * tools/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav,
406         * tools/gnu/classpath/tools/rmic/templates/Stub_12.jav,
407         * tools/gnu/classpath/tools/rmic/templates/Stub_12Method.jav,
408         * tools/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav,
409         * tools/gnu/classpath/tools/rmic/templates/Tie.jav,
410         * tools/gnu/classpath/tools/rmic/templates/TieMethod.jav,
411         * tools/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav:
412         Removed.
413         * tools/resource/com/sun/tools/javac/messages.properties,
414         * tools/resource/gnu/classpath/tools/appletviewer/messages.properties,
415         * tools/resource/gnu/classpath/tools/common/Messages.properties,
416         * tools/resource/gnu/classpath/tools/getopt/Messages.properties,
417         * tools/resource/gnu/classpath/tools/jar/messages.properties,
418         * tools/resource/gnu/classpath/tools/jarsigner/messages.properties,
419         * tools/resource/gnu/classpath/tools/keytool/messages.properties,
420         * tools/resource/gnu/classpath/tools/native2ascii/messages.properties,
421         * tools/resource/gnu/classpath/tools/orbd/messages.properties,
422         * tools/resource/gnu/classpath/tools/rmic/messages.properties,
423         * tools/resource/gnu/classpath/tools/rmic/templates/ImplTie.jav,
424         * tools/resource/gnu/classpath/tools/rmic/templates/Stub.jav,
425         * tools/resource/gnu/classpath/tools/rmic/templates/StubMethod.jav,
426         * tools/resource/gnu/classpath/tools/rmic/templates/StubMethodVoid.jav,
427         * tools/resource/gnu/classpath/tools/rmic/templates/Stub_12.jav,
428         * tools/resource/gnu/classpath/tools/rmic/templates/Stub_12Method.jav,
429         * tools/resource/gnu/classpath/tools/rmic/templates/Stub_12MethodVoid.jav,
430         * tools/resource/gnu/classpath/tools/rmic/templates/Tie.jav,
431         * tools/resource/gnu/classpath/tools/rmic/templates/TieMethod.jav,
432         * tools/resource/gnu/classpath/tools/rmic/templates/TieMethodVoid.jav,
433         * tools/resource/gnu/classpath/tools/rmid/messages.properties,
434         * tools/resource/gnu/classpath/tools/rmiregistry/messages.properties,
435         * tools/resource/gnu/classpath/tools/serialver/messages.properties,
436         * tools/resource/gnu/classpath/tools/tnameserv/messages.properties,
437         * tools/resource/sun/rmi/rmic/messages.properties:
438         Added.
439         
440 2008-02-18  Roman Kennke  <kennke@aicas.com>
441
442         * gnu/java/awt/peer/x/XGraphics2D.java
443         (RENDER_OPAQUE): New constant with system property to
444         turn on opaque image rendering.
445         (rawDrawImage): Render images opaque when system property
446         is set. This is for demonstration and debugging purposes only.
447
448 2008-02-18  Roman Kennke  <kennke@aicas.com>
449
450         * gnu/java/awt/image/AsyncImage.java: New file. Implements
451         asynchronous image loading.
452         * gnu/java/awt/image/ImageConverter.java: New file.
453         An image consumer that creates a concrete image with
454         asynchronous behaviour.
455         * gnu/java/awt/peer/x/ImageConverter.java: Removed.
456         * gnu/java/awt/peer/x/XToolkit.java:
457         (createImage(ImageProducer)): Use new ImageConverter.
458         * gnu/java/awt/peer/x/XGraphics2D.java:
459         (rawDrawImage): Unwrap AsyncImages before painting.
460         (unwrap): New helper method.
461
462 2008-02-18  Jakub Jelinek  <jakub@redhat.com>
463
464         * doc/cp-tools.texinfo (@direntry): Prefix info name with cp-.
465         * doc/cp-hacking.texinfo (@direntry): Likewise.
466         * doc/cp-vmintegration.texinfo (@direntry): Likewise.
467
468 2008-02-18  Roman Kennke  <kennke@aicas.com>
469
470         * java/awt/image/RGBImageFilter.java
471         (setPixels): Don't mask the source pixel.
472
473 2008-02-18  Roman Kennke  <kennke@aicas.com>
474
475         * gnu/java/awt/peer/x/XGraphics2D.java
476         (rawDrawImage): Update the rgb variable correctly. Don't
477         cache translucent images.
478
479 2008-02-17  Andrew John Hughes  <gnu_andrew@member.fsf.org>
480
481         * vm/reference/java/lang/reflect/Constructor.java,
482         * vm/reference/java/lang/reflect/Method.java:
483         Add missing java.lang.annotation.Annotation import.
484
485 2008-02-17  Andrew John Hughes  <gnu_andrew@member.fsf.org>
486
487         * vm/reference/java/lang/reflect/Constructor.java,
488         * vm/reference/java/lang/reflect/Method.java:
489         (getParameterAnnotations()): Added.
490         
491 2008-02-17  Andrew John Hughes  <gnu_andrew@member.fsf.org>
492
493         * javax/swing/tree/DefaultMutableTreeNode.java:
494         Add generics.
495         * javax/swing/tree/DefaultTreeCellEditor.java:
496         (tPath): Removed.
497         (configureEditingComponent(JTree,
498         DefaultTreeCellRenderer,TreeCellEditor)): Removed.
499         * javax/swing/tree/DefaultTreeCellRenderer.java:
500         Removed unused call to getIcon().
501         * javax/swing/tree/DefaultTreeSelectionModel.java:
502         Add generics.
503
504 2008-02-17  Andrew John Hughes  <gnu_andrew@member.fsf.org>
505
506         * javax/swing/tree/FixedHeightLayoutCache.java,
507         * javax/swing/tree/VariableHeightLayoutCache.java,
508         * javax/swing/undo/StateEdit.java:
509         Use type parameters with collections classes.
510
511 2008-02-17  Andrew John Hughes  <gnu_andrew@member.fsf.org>
512
513         * m4/ac_prog_javac.m4:
514         Turn off ecj warnings for deprecation,
515         serialization and unused imports
516         (both cases).
517
518 2008-02-17  Andrew John Hughes  <gnu_andrew@member.fsf.org>
519
520         * m4/ac_prog_javac.m4:
521         Turn off ecj warnings for deprecation,
522         serialization and unused imports.
523         
524 2008-02-17  Andrew John Hughes  <gnu_andrew@member.fsf.org>
525
526         * org/omg/CORBA/PolicyErrorHelper.java,
527         * org/omg/CORBA/UnknownUserExceptionHelper.java,
528         * org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateNameHelper.java,
529         * org/omg/PortableServer/ForwardRequestHelper.java,
530         * org/omg/PortableServer/POAPackage/InvalidPolicyHelper.java:
531         Remove unused variable.
532
533 2008-02-16  Andrew John Hughes  <gnu_andrew@member.fsf.org>
534
535         * gnu/classpath/ServiceFactory.java:
536         Use generics.
537         * gnu/classpath/ServiceProviderLoadingAction.java:
538         Likewise.
539         
540 2008-02-15  Andrew John Hughes  <gnu_andrew@member.fsf.org>
541
542         PR classpath/34579:
543         * m4/ac_prog_javac_works.m4: Change test
544         to one that doesn't rely on the compiler's
545         class library.
546         
547 2008-02-11  Andrew John Hughes  <gnu_andrew@member.fsf.org>
548
549         PR classpath/34578:
550         * NEWS: Mention javah and javac build changes.
551         * configure.ac: Call AC_PROG_JAVAC and
552         CLASSPATH_JAVAC_MEM_CHECK instead of CLASSPATH_FIND_JAVAC.
553         * examples/Makefile.am: Simplify compiler choice
554         to just use JAVAC.
555         * lib/Makefile.am: Likewise, but with JAVAC_MEM_OPT too.
556         * m4/ac_prog_javac.m4: New file.
557         * m4/ac_prog_javac_works.m4: Likewise.
558         * m4/acinclude.m4:
559         (CLASSPATH_FIND_JAVAC): Removed.
560         (CLASSPATH_WITH_GCJ): Removed.
561         (CLASSPATH_CHECK_GCJ): Removed.
562         (CLASSPATH_WITH_JIKES): Removed.
563         (CLASSPATH_CHECK_JIKES): Removed.
564         (CLASSPATH_WITH_KJC): Removed.
565         (CLASSPATH_CHECK_KJC): Removed.
566         (CLASSPATH_WITH_ECJ): Removed.
567         (CLASSPATH_CHECK_ECJ): Removed.
568         (CLASSPATH_WITH_JAVAC): Removed.
569         (CLASSPATH_CHECK_JAVAC): Removed.
570         (CLASSPATH_JAVAC_MEM_CHECK): Added.
571         * tools/Makefile.am: Simplify compiler choice
572         to just javac.
573
574 2008-02-12  Roman Kennke  <kennke@aicas.com>
575
576         * java/awt/color/ICC_Profile.java
577         (getInstance()): Wrap call to InputStream.read(byte[],int,int) in
578         a loop, in order to read the whole thing.
579
580 2008-02-10  Andrew John Hughes  <gnu_andrew@member.fsf.org>
581
582         * javax/management/remote/NotificationResult.java:
583         New file.
584         * javax/management/remote/TargetedNotification.java:
585         Likewise.
586         * javax/management/remote/rmi/RMIConnection.java:
587         (fetchNotifications(long,int,long)): Added.
588         
589 2008-02-10  Dalibor Topic  <robilad@kaffe.org>
590
591         * lib/Makefile.am (compile_classpath), include/Makefile.am (JAVAH): 
592         Replaced USER_CLASSLIB with PATH_TO_GLIBJ_ZIP.
593
594         * m4/acinclude.m4 (CLASSPATH_WITH_CLASSLIB)[--with-classpath]:
595         Removed unused option. It's superceded by --with-glibj-zip.
596
597 2008-02-10  Dalibor Topic  <robilad@kaffe.org>
598
599         * m4/acinclude.m4 (CLASSPATH_CHECK_JAVAH)[USER_JAVAH]: 
600         Check for gjavah-4.3.
601
602 2008-02-10  Mark Wielaard  <mark@klomp.org>
603
604         * scripts/check_jni_methods.sh.in:
605         Use abs_src_builddir so that the absolute path
606         to the source directory is used by the script.
607         
608 2008-02-10  Andrew John Hughes  <gnu_andrew@member.fsf.org>
609
610         * scripts/check_jni_methods.sh.in:
611         Use abs_top_builddir so that the absolute path
612         to the build directory is used by the script.
613         
614 2008-02-10  Andrew John Hughes  <gnu_andrew@member.fsf.org>
615
616         * javax/management/remote/rmi/RMIConnection.java:
617         (addNotificationListeners(ObjectName[],
618         MarshalledObject[], Subject[])): Fixed return type.
619         (close()): Added.
620         (createMBean(String,ObjectName,MarshalledObject,
621         String[], Subject)): Likewise.
622         (createMBean(String,ObjectName,ObjectName,
623         MarshalledObject, String[], Subject)): Likewise.
624         (createMBean(String,ObjectName,ObjectName,
625         Subject)): Likewise.
626         (createMBean(String,ObjectName,Subject)): Likewise.
627         (getAttribute(ObjectName,String,Subject)): Likewise.
628         (getAttributes(ObjectName,String[],Subject)): Likewise.
629         (getConnectionId()): Likewise.
630         (getDefaultDomain(Subject)): Likewise.
631         (getDomains(Subject)): Likewise.
632         (getMBeanCount(Subject)): Likewise.
633         (getMBeanInfo(ObjectName,Subject)): Likewise.
634         (getObjectInstance(ObjectName,Subject)): Likewise.
635         (invoke(ObjectName,String,MarshalledObject,String[],
636         Subject)): Likewise.
637         (isInstanceOf(ObjectName,String,Subject)): Likewise.
638         (isRegistered(ObjectName,Subject)): Likewise.
639         (queryMBeans(ObjectName,MarshalledObject,Subject)): Likewise.
640         (queryNames(ObjectName,MarshalledObject,Subject)): Likewise.
641         (removeNotificationListener(ObjectName,ObjectName,MarshalledObject,
642         MarshalledObject,Subject)): Likewise.
643         (removeNotificationListener(ObjectName,ObjectName,Subject)):
644         Likewise.
645         (removeNotificationListeners(ObjectName,Integer[],Subject)):
646         Likewise.
647         (setAttribute(ObjectName,MarshalledObject,Subject)): Likewise.
648         (setAttributes(ObjectName,MarshalledObject,Subject)): Likewise.
649         (unregisterMBean(ObjectName,Subject)): Likewise.
650
651 2008-02-09  Dalibor Topic  <robilad@kaffe.org>
652
653         * native/jni/Makefile.am (all-local): Call check_jni_methods.sh
654         directly.
655
656         * scripts/Makefile.am (EXTRA_DIST): Removed check_jni_methods.sh.
657
658         * include/Makefile.am (SOUND_H_FILES, GST_PEER_H_FILES)
659         (XMLJ_H_FILES, GTKPEER_H_FILES, QTPEER_H_FILES)
660         (GCONF_PREFS_FILES, H_FILES): Don't generate header files
661         in the source directory, as it may not be writeable.
662         (DISTCLEANFILES) Added H_FILES.
663
664         * configure.ac (AC_CONFIG_FILES): Added 
665         scripts/check_jni_methods.sh.
666
667         * scripts/check_jni_methods.sh: Removed. Moved over to ..
668         * scripts/check_jni_methods.sh.in: New file. Added 
669         top_srcdir and top_builddir where necessary.
670         
671 2008-02-09  Mario Torre  <neugens@limasoftware.net>
672
673         * include/java_util_VMTimeZone.h: Removed.
674         * native/jni/gconf-peer/GConfNativePeer.c: all native methods, replaced
675         GConfEngine with GConfClient and use GConfClient API instead.
676
677 2008-02-08  Mark Wielaard  <mark@klomp.org>
678
679         * m4/acinclude.m4 (CLASSPATH_CHECK_JAVAC): Delete
680         Colour.class.
681
682         * include/.cvsignore: Add java_* and gnu_*.h.
683
684 2008-02-08  Mario Torre  <neugens@limasoftware.net>
685
686     * configure.ac: --enable-regen-header option now enabled by default.
687     * include/gnu_java_awt_dnd_peer_gtk_GtkDragSourceContextPeer.h: Removed.
688     * include/gnu_java_awt_peer_gtk_CairoGraphics2D.h: Removed.
689     * include/gnu_java_awt_peer_gtk_CairoSurface.h: Removed.
690     * include/gnu_java_awt_peer_gtk_ComponentGraphics.h: Removed.
691     * include/gnu_java_awt_peer_gtk_ComponentGraphicsCopy.h: Removed.
692     * include/gnu_java_awt_peer_gtk_FreetypeGlyphVector.h: Removed.
693     * include/gnu_java_awt_peer_gtk_GdkFontPeer.h: Removed.
694     * include/gnu_java_awt_peer_gtk_GdkGraphicsEnvironment.h: Removed.
695     * include/gnu_java_awt_peer_gtk_GdkPixbufDecoder.h: Removed.
696     * include/gnu_java_awt_peer_gtk_GdkRobotPeer.h: Removed.
697     * include/gnu_java_awt_peer_gtk_GdkScreenGraphicsDevice.h: Removed.
698     * include/gnu_java_awt_peer_gtk_GtkButtonPeer.h: Removed.
699     * include/gnu_java_awt_peer_gtk_GtkCanvasPeer.h: Removed.
700     * include/gnu_java_awt_peer_gtk_GtkCheckboxMenuItemPeer.h: Removed.
701     * include/gnu_java_awt_peer_gtk_GtkCheckboxPeer.h: Removed.
702     * include/gnu_java_awt_peer_gtk_GtkChoicePeer.h: Removed.
703     * include/gnu_java_awt_peer_gtk_GtkClipboard.h: Removed.
704     * include/gnu_java_awt_peer_gtk_GtkComponentPeer.h: Removed.
705     * include/gnu_java_awt_peer_gtk_GtkEmbeddedWindowPeer.h: Removed.
706     * include/gnu_java_awt_peer_gtk_GtkFileDialogPeer.h: Removed.
707     * include/gnu_java_awt_peer_gtk_GtkFramePeer.h: Removed.
708     * include/gnu_java_awt_peer_gtk_GtkGenericPeer.h: Removed.
709     * include/gnu_java_awt_peer_gtk_GtkImage.h: Removed.
710     * include/gnu_java_awt_peer_gtk_GtkLabelPeer.h: Removed.
711     * include/gnu_java_awt_peer_gtk_GtkListPeer.h: Removed.
712     * include/gnu_java_awt_peer_gtk_GtkMenuBarPeer.h: Removed.
713     * include/gnu_java_awt_peer_gtk_GtkMenuComponentPeer.h: Removed.
714     * include/gnu_java_awt_peer_gtk_GtkMenuItemPeer.h: Removed.
715     * include/gnu_java_awt_peer_gtk_GtkMenuPeer.h: Removed.
716     * include/gnu_java_awt_peer_gtk_GtkPanelPeer.h: Removed.
717     * include/gnu_java_awt_peer_gtk_GtkPopupMenuPeer.h: Removed.
718     * include/gnu_java_awt_peer_gtk_GtkScrollbarPeer.h: Removed.
719     * include/gnu_java_awt_peer_gtk_GtkScrollPanePeer.h: Removed.
720     * include/gnu_java_awt_peer_gtk_GtkSelection.h: Removed.
721     * include/gnu_java_awt_peer_gtk_GtkTextAreaPeer.h: Removed.
722     * include/gnu_java_awt_peer_gtk_GtkTextFieldPeer.h: Removed.
723     * include/gnu_java_awt_peer_gtk_GtkToolkit.h: Removed.
724     * include/gnu_java_awt_peer_gtk_GtkVolatileImage.h: Removed.
725     * include/gnu_java_awt_peer_gtk_GtkWindowPeer.h: Removed.
726     * include/gnu_java_awt_peer_qt_MainQtThread.h: Removed.
727     * include/gnu_java_awt_peer_qt_QMatrix.h: Removed.
728     * include/gnu_java_awt_peer_qt_QPainterPath.h: Removed.
729     * include/gnu_java_awt_peer_qt_QPen.h: Removed.
730     * include/gnu_java_awt_peer_qt_QtAudioClip.h: Removed.
731     * include/gnu_java_awt_peer_qt_QtButtonPeer.h: Removed.
732     * include/gnu_java_awt_peer_qt_QtCanvasPeer.h: Removed.
733     * include/gnu_java_awt_peer_qt_QtCheckboxPeer.h: Removed.
734     * include/gnu_java_awt_peer_qt_QtChoicePeer.h: Removed.
735     * include/gnu_java_awt_peer_qt_QtComponentPeer.h: Removed.
736     * include/gnu_java_awt_peer_qt_QtDialogPeer.h: Removed.
737     * include/gnu_java_awt_peer_qt_QtEmbeddedWindowPeer.h: Removed.
738     * include/gnu_java_awt_peer_qt_QtFileDialogPeer.h: Removed.
739     * include/gnu_java_awt_peer_qt_QtFontMetrics.h: Removed.
740     * include/gnu_java_awt_peer_qt_QtFontPeer.h: Removed.
741     * include/gnu_java_awt_peer_qt_QtFramePeer.h: Removed.
742     * include/gnu_java_awt_peer_qt_QtGraphics.h: Removed.
743     * include/gnu_java_awt_peer_qt_QtImage.h: Removed.
744     * include/gnu_java_awt_peer_qt_QtLabelPeer.h: Removed.
745     * include/gnu_java_awt_peer_qt_QtListPeer.h: Removed.
746     * include/gnu_java_awt_peer_qt_QtMenuBarPeer.h: Removed.
747     * include/gnu_java_awt_peer_qt_QtMenuComponentPeer.h: Removed.
748     * include/gnu_java_awt_peer_qt_QtMenuItemPeer.h: Removed.
749     * include/gnu_java_awt_peer_qt_QtMenuPeer.h: Removed.
750     * include/gnu_java_awt_peer_qt_QtPanelPeer.h: Removed.
751     * include/gnu_java_awt_peer_qt_QtPopupMenuPeer.h: Removed.
752     * include/gnu_java_awt_peer_qt_QtScreenDevice.h: Removed.
753     * include/gnu_java_awt_peer_qt_QtScrollbarPeer.h: Removed.
754     * include/gnu_java_awt_peer_qt_QtScrollPanePeer.h: Removed.
755     * include/gnu_java_awt_peer_qt_QtTextAreaPeer.h: Removed.
756     * include/gnu_java_awt_peer_qt_QtTextFieldPeer.h: Removed.
757     * include/gnu_java_awt_peer_qt_QtToolkit.h: Removed.
758     * include/gnu_java_awt_peer_qt_QtVolatileImage.h: Removed.
759     * include/gnu_java_awt_peer_qt_QtWindowPeer.h: Removed.
760     * include/gnu_java_lang_management_VMOperatingSystemMXBeanImpl.h: Removed.
761     * include/gnu_java_net_local_LocalSocketImpl.h: Removed.
762     * include/gnu_java_net_VMPlainSocketImpl.h: Removed.
763     * include/gnu_java_nio_charset_iconv_IconvDecoder.h: Removed.
764     * include/gnu_java_nio_charset_iconv_IconvEncoder.h: Removed.
765     * include/gnu_java_nio_EpollSelectorImpl.h: Removed.
766     * include/gnu_java_nio_FileChannelImpl.h: Removed.
767     * include/gnu_java_nio_KqueueSelectorImpl.h: Removed.
768     * include/gnu_java_nio_VMChannel.h: Removed.
769     * include/gnu_java_nio_VMPipe.h: Removed.
770     * include/gnu_java_nio_VMSelector.h: Removed.
771     * include/gnu_java_util_prefs_gconf_GConfNativePeer.h: Removed.
772     * include/gnu_javax_sound_midi_alsa_AlsaMidiDeviceProvider.h: Removed.
773     * include/gnu_javax_sound_midi_alsa_AlsaMidiSequencerDevice.h: Removed.
774     * include/gnu_javax_sound_midi_alsa_AlsaPortDevice.h: Removed.
775     * include/gnu_javax_sound_midi_dssi_DSSIMidiDeviceProvider.h: Removed.
776     * include/gnu_javax_sound_midi_dssi_DSSISynthesizer.h: Removed.
777     * include/gnu_javax_sound_sampled_gstreamer_io_GstAudioFileReaderNativePeer.h: Removed.
778     * include/gnu_javax_sound_sampled_gstreamer_io_GstInputStream.h: Removed.
779     * include/gnu_javax_sound_sampled_gstreamer_lines_GstNativeDataLine.h: Removed.
780     * include/gnu_javax_sound_sampled_gstreamer_lines_GstPipeline.h: Removed.
781     * include/gnu_xml_libxmlj_dom_GnomeAttr.h: Removed.
782     * include/gnu_xml_libxmlj_dom_GnomeDocument.h: Removed.
783     * include/gnu_xml_libxmlj_dom_GnomeDocumentBuilder.h: Removed.
784     * include/gnu_xml_libxmlj_dom_GnomeDocumentType.h: Removed.
785     * include/gnu_xml_libxmlj_dom_GnomeElement.h: Removed.
786     * include/gnu_xml_libxmlj_dom_GnomeEntity.h: Removed.
787     * include/gnu_xml_libxmlj_dom_GnomeNamedNodeMap.h: Removed.
788     * include/gnu_xml_libxmlj_dom_GnomeNode.h: Removed.
789     * include/gnu_xml_libxmlj_dom_GnomeNodeList.h: Removed.
790     * include/gnu_xml_libxmlj_dom_GnomeNotation.h: Removed.
791     * include/gnu_xml_libxmlj_dom_GnomeProcessingInstruction.h: Removed.
792     * include/gnu_xml_libxmlj_dom_GnomeTypeInfo.h: Removed.
793     * include/gnu_xml_libxmlj_dom_GnomeXPathExpression.h: Removed.
794     * include/gnu_xml_libxmlj_dom_GnomeXPathNodeList.h: Removed.
795     * include/gnu_xml_libxmlj_dom_GnomeXPathResult.h: Removed.
796     * include/gnu_xml_libxmlj_sax_GnomeLocator.h: Removed.
797     * include/gnu_xml_libxmlj_sax_GnomeXMLReader.h: Removed.
798     * include/gnu_xml_libxmlj_transform_GnomeTransformer.h: Removed.
799     * include/gnu_xml_libxmlj_transform_GnomeTransformerFactory.h: Removed.
800     * include/java_io_VMFile.h: Removed.
801     * include/java_io_VMObjectInputStream.h: Removed.
802     * include/java_io_VMObjectStreamClass.h: Removed.
803     * include/java_lang_reflect_VMArray.h: Removed.
804     * include/java_lang_VMDouble.h: Removed.
805     * include/java_lang_VMFloat.h: Removed.
806     * include/java_lang_VMMath.h: Removed.
807     * include/java_lang_VMProcess.h: Removed.
808     * include/java_lang_VMSystem.h: Removed.
809     * include/java_net_VMInetAddress.h: Removed.
810     * include/java_net_VMNetworkInterface.h: Removed.
811     * include/java_net_VMURLConnection.h: Removed.
812     * include/java_nio_MappedByteBufferImpl.h: Removed.
813     * include/java_nio_VMDirectByteBuffer.h: Removed.
814
815 2008-02-08  Roman Kennke  <kennke@aicas.com>
816
817         * gnu/java/awt/peer/gtk/GtkComponentPeer.java,
818         * gnu/java/awt/peer/gtk/GtkToolkit.java: Removed mistakenly
819         committed code.
820
821 2008-02-08  Roman Kennke  <kennke@aicas.com>
822
823         * gnu/java/awt/peer/gtk/CairoGraphics2D.java,
824         * gnu/java/awt/peer/gtk/GdkFontPeer.java,
825         * gnu/java/awt/peer/gtk/GdkGraphicsEnvironment.java,
826         * gnu/java/awt/peer/gtk/GdkPixbufDecoder.java,
827         * gnu/java/awt/peer/gtk/GdkScreenGraphicsDevice.java,
828         * gnu/java/awt/peer/gtk/GtkComponentPeer.java,
829         * gnu/java/awt/peer/gtk/GtkToolkit.java: Only call
830         System.loadLibrary() when configured so.
831
832 2008-02-08  Dalibor Topic  <robilad@kaffe.org>
833
834         * NEWS: Documented removal of floatToIntBits and doubleToLongBits from
835         VM interface.
836
837 2008-02-08  Dalibor Topic  <robilad@kaffe.org>
838
839         * vm/reference/java/lang/VMFloat.java (floatToIntBits): Removed unused
840         method.
841
842         * native/jni/java-lang/java_lang_VMFloat.c (Java_java_lang_VMFloat_floatToIntBits): Removed unused function.
843
844         * include/java_lang_VMDouble.h: Regenerated.
845         
846         * doc/cp-vmintegration.texinfo (java.lang.VMFloat): Removed
847         unused method floatToIntBits. (java.lang.VMDouble): Use similar
848         text to text used for floatToRawIntBits for doubleToLongBits.
849
850 2008-02-08  Dalibor Topic  <robilad@kaffe.org>
851
852         * java/lang/Float.java (floatToIntBits): Simplified. 
853
854 2008-02-08  Dalibor Topic  <robilad@kaffe.org>
855
856         * m4/acinclude.m4 (CLASSPATH_CHECK_JAVAH) [USER_JAVAH]: Check for gjavah-4.2
857         and gjavah-4.1.
858
859 2008-02-08  Dalibor Topic  <robilad@kaffe.org>
860
861         * vm/reference/java/lang/VMDouble.java (doubleToLongBits): Removed unused method.
862
863         * native/jni/java-lang/java_lang_VMDouble.c (Java_java_lang_VMDouble_doubleToLongBits): 
864         Removed unused function.
865
866         * include/java_lang_VMDouble.h: Regenerated.
867         
868         * doc/cp-vmintegration.texinfo (java.lang.VMDouble): Removed
869         unused method doubleToLongBits.
870
871 2008-02-08  Dalibor Topic  <robilad@kaffe.org>
872
873         * java/lang/Double.java (doubleToLongBits): Simplified.
874
875 2008-02-07  Ian Rogers  <ian.rogers@manchester.ac.uk>
876
877         * java/lang/String.java
878         (replace): Only copy "live" portion of String. Use array copies in preference
879         to clone.
880         (toLowerCaseTurkish): likewise
881         (toLowerCase): likewise
882         (toUpperCaseTurkish): likewise
883         (toUpperCase): likewise
884         (toCharArray): Use array copies in preference to clone.
885
886 2008-02-05  Ian Rogers  <ian.rogers@manchester.ac.uk>
887
888         * gnu/java/lang/reflect/TypeSignature.java
889         * java/io/BufferedReader.java
890         * java/io/DataInputStream.java
891         * java/lang/StackTraceElement.java
892         * java/lang/Throwable.java
893         * java/lang/reflect/Proxy.java
894         * java/net/URI.java
895         * java/net/URLClassLoader.java
896         * java/net/URLEncoder.java
897         * java/text/SimpleDateFormat.java
898         * java/util/AbstractMap.java
899         * java/util/Calendar.java
900         * java/util/Date.java
901         * java/util/Hashtable.java
902         Use StringBuilder in preference to StringBuffer
903         * java/util/Calendar.java
904         * java/util/Hashtable.java
905         Make private fields that can be final, final
906         * java/net/URI.java
907         Avoid creating Integer objects for the sake of comparison
908         * java/lang/reflect/Proxy.java
909         * java/text/SimpleDateFormat.java
910         Swap use of "new Character/Integer" to use of valueOf methods
911
912 2008-01-29  Ito Kazumitsu  <kaz@maczuka.gcd.org>
913
914         Fixes bug #22941
915         * java/io/DataInputStream.java(readUTFLong): New method.
916         (readUTF): New private method.
917         * java/io/DataOutputStream.java(getUTFlength): Made package-private,
918         Return type changed to long.
919         (writeUTF): Use the new method writeUTFShort.
920         (writeUTFShort): New package-private method.
921         (writeUTFLong): New package-private method.
922         (writeUTFBytes): New private method.
923         * java/io/ObjectInputStream.java(parseContent): Separate the
924         handling of TC_LONGSTRING from TC_STRING.
925         * java/io/ObjectOutputStream.java(writeObject): When to write a
926         String, use writeUTFShort or writeUTFLong depending on the byte length.
927
928 2008-01-27  Bernhard Fischer  <rep.dot.nop@gmail.com>
929
930         * java/util/SimpleTimeZone.java (SimpleTimeZone): Fix typo in comment.
931         * gnu/CORBA/GIOP/v1_2/RequestHeader.java (RequestHeader): Fix typo in
932         exception message.
933
934 2008-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
935
936         * doc/README.jaxp: Fix typos.
937
938 2008-01-25  Dalibor Topic  <robilad@kaffe.org>
939
940         * tools/gnu/classpath/tools/native2ascii/Native2ASCII.java 
941         (createParser): Removed unused "reversed" misspelling. Use 
942         Native2ASCII.ReverseHelp instead of Native2ASCII.ReversedHelp.
943
944         * resource/gnu/classpath/tools/native2ascii/messages.properties
945         (Native2ASCII.ReverseHelp): New, renamed from ... 
946         (Native2ASCII.ReversedHelp): Removed.
947         (Native2ASCII.ReversedHelpCompat): Removed.
948
949 2008-01-24  Tom Tromey  <tromey@redhat.com>
950
951         * resource/gnu/classpath/tools/native2ascii/messages.properties
952         (Native2ASCII.ReversedHelpCompat): New.
953         * tools/gnu/classpath/tools/native2ascii/Native2ASCII.java
954         (createParser): Add -reverse.  Update -reversed.
955
956 2008-01-21  Luciano Chavez  <lnx1138@us.ibm.com>
957
958         PR libgcj/34369:
959         * java/net/URI.java (relativize): Check initial segment for
960         trailing "/".
961
962 2008-01-14  Andrew John Hughes  <gnu_andrew@member.fsf.org>
963
964         * m4/acinclude.m4:
965         Remove bootclasspath option which fails with
966         OpenJDK javac.
967         
968 2008-01-14  Roman Kennke  <kennke@aicas.com>
969
970         * javax/tools/FileObject.java: New interface.
971
972 2008-01-14  Andrew John Hughes  <gnu_andrew@member.fsf.org>
973
974         * javax/accessibility/AccessibleAction.java:
975         (CLICK): Added.
976         (TOGGLE_POPUP): Likewise.
977         * javax/accessbiility/AccessibleRole.java:
978         (HTML_CONTAINER): Added.
979         
980 2008-01-14  Andrew John Hughes  <gnu_andrew@member.fsf.org>
981
982         * javax/accessibility/AccessibleAttributeSequence.java:
983         (AccessibleAttributeSequence(int,int,AttributeSet)):
984         Implemented.
985         * javax/accessibility/AccessibleTextSequence.java:
986         (AccessibleTextSequence(int,int,String)):
987         Likewise.
988         
989 2008-01-13  Leen Toelen  <toelen@gmail.com>
990
991         * native/fdlibm/ieeefp.h: Added avr32 support.
992
993 2008-01-09  Stefan Huehner <stefan@huehner.org>
994        
995         * native/jni/java-io/java_io_VMObjectStreamClass.c,
996         * native/jni/java-lang/java_lang_VMDouble.c,
997         * native/jni/java-net/java_net_VMInetAddress.c:
998         Don't discard const by casting (const char *) to
999         (char *) when it's not needed.
1000
1001 2008-01-09  Stefan Huehner <stefan@huehner.org>
1002
1003         * gnu/classpath/jdwp/event/ExceptionEvent.java,
1004         * gnu/java/awt/peer/gtk/GtkMainThread.java:
1005         Use Boolean.TRUE|FALSE instead of new Boolean(true|false)
1006         * gnu/java/rmi/server/ConnectionRunnerPool.java,
1007         * gnu/xml/aelfred2/XmlParser.java,
1008         * gnu/xml/libxmlj/dom/GnomeXPathResult.java,
1009         * gnu/xml/stream/XIncludeFilter.java:
1010         Use Integer|Double|Charater.toString(var) instead of
1011         new Integer|Double|Character(var).toString()
1012
1013 2006-01-09  Roman Kennke  <kennke@aicas.com>
1014
1015         * javax/tools/Diagnostic.java,
1016         * javax/tools/DiagnosticListener.java:
1017         New interfaces.
1018
1019 2006-01-09  Roman Kennke  <kennke@aicas.com>
1020
1021         * gnu/java/awt/peer/x/XWindowPeer.java
1022         (getFontMetrics): Re-enable that for X fonts.
1023
1024 2008-01-09  Stefan Huehner <stefan@huehner.org>
1025
1026
1027         * examples/gnu/classpath/examples/java2d/J2dBenchmark.java,
1028         * gnu/CORBA/OrbFocused.java,
1029         * gnu/CORBA/CDR/HeadlessInput.java,
1030         * gnu/java/awt/peer/gtk/CairoGraphics2D.java,
1031         * gnu/java/awt/peer/gtk/GtkFramePeer.java,
1032         * gnu/java/awt/peer/qt/QtMenuPeer.java,
1033         * gnu/java/nio/FileChannelImpl.java,
1034         * gnu/java/nio/SocketChannelSelectionKeyImpl.java,
1035         * gnu/java/security/Engine.java,
1036         * gnu/javax/imageio/jpeg/JPEGComponent.java,
1037         * gnu/javax/imageio/jpeg/JPEGDecoder.java,
1038         * gnu/javax/imageio/jpeg/JPEGFrame.java,
1039         * gnu/javax/print/PrinterDialog.java,
1040         * gnu/javax/security/auth/Password.java,
1041         * gnu/javax/swing/text/html/parser/support/Parser.java,
1042         * gnu/javax/swing/text/html/parser/support/parameterDefaulter.java,
1043         * gnu/xml/pipeline/DomConsumer.java,
1044         * java/awt/AWTKeyStroke.java,
1045         * java/awt/DefaultKeyboardFocusManager.java,
1046         * java/awt/GridBagLayout.java,
1047         * java/awt/dnd/DragGestureRecognizer.java,
1048         * java/awt/geom/Arc2D.java,
1049         * java/awt/geom/CubicCurve2D.java,
1050         * java/awt/geom/QuadCurve2D.java,
1051         * java/awt/im/InputContext.java,
1052         * java/awt/image/AffineTransformOp.java,
1053         * java/beans/Encoder.java,
1054         * java/io/ObjectInputStream.java,
1055         * java/io/ObjectStreamClass.java,
1056         * java/net/ResolverCache.java,
1057         * java/nio/charset/Charset.java,
1058         * java/security/SecureClassLoader.java,
1059         * java/text/MessageFormat.java,
1060         * java/util/jar/Manifest.java,
1061         * javax/accessibility/AccessibleRelationSet.java,
1062         * javax/imageio/ImageReader.java,
1063         * javax/imageio/metadata/IIOMetadataNode.java,
1064         * javax/print/attribute/standard/MediaSize.java,
1065         * javax/print/attribute/standard/PrinterStateReasons.java,
1066         * javax/swing/JTree.java,
1067         * javax/swing/table/DefaultTableColumnModel.java,
1068         * javax/swing/text/html/MinimalHTMLWriter.java,
1069         * javax/swing/text/html/parser/DTD.java,
1070         * javax/swing/tree/DefaultMutableTreeNode.java,
1071         * javax/swing/undo/UndoManager.java,
1072         * org/omg/CosNaming/NamingContextExtPOA.java,
1073         * org/omg/CosNaming/NamingContextPOA.java,
1074         * org/omg/CosNaming/_NamingContextExtImplBase.java,
1075         * org/omg/CosNaming/_NamingContextImplBase.java,
1076         * tools/gnu/classpath/tools/appletviewer/CommonAppletStub.java:
1077         Remove unneeded casts
1078
1079 2006-01-09  Roman Kennke  <kennke@aicas.com>
1080
1081         * java/text/CollationElementIterator.java
1082         (text): Changed type to CharacterIterator.
1083         (CollationElementIterator(RuleBasedCollator,CharacterIterator)): New
1084         constructor.
1085         (setOffset(int)): Use CharacterIterator.getEndIndex() instead of
1086         String.length().
1087         (setText(String)): Wrap string into a StringCharacterIterator.
1088         * java/text/RuleBasedCollator.java
1089         (getCollationElementIterator(CharacterIterator)): Simply return
1090         CollationElementIterator for the character iterator, instead of
1091         expanding things.
1092
1093 2008-01-08  Andrew John Hughes  <gnu_andrew@member.fsf.org>
1094
1095         PR classpath/34579:
1096         * m4/acinclude.m4:
1097         (CLASSPATH_CHECK_JAVAC): Delete Colour.java
1098
1099 2008-01-04  Stefan Huehner <stefan@huehner.org>
1100
1101         * gnu/CORBA/BigDecimalHelper.java,
1102         * gnu/CORBA/CDR/AbstractCdrInput.java,
1103         * gnu/CORBA/CDR/AbstractCdrOutput.java,
1104         * gnu/CORBA/CDR/HeadlessInput.java,
1105         * gnu/CORBA/CDR/gnuRuntime.java,
1106         * gnu/CORBA/Connected_objects.java,
1107         * gnu/CORBA/GIOP/CancelHeader.java,
1108         * gnu/CORBA/GIOP/v1_0/CancelHeader.java,
1109         * gnu/CORBA/IOR.java,
1110         * gnu/CORBA/Interceptor/Registrator.java,
1111         * gnu/CORBA/IorDelegate.java,
1112         * gnu/CORBA/NamingService/NameTransformer.java,
1113         * gnu/CORBA/ObjectCreator.java,
1114         * gnu/CORBA/OrbFunctional.java,
1115         * gnu/CORBA/Poa/AOM.java,
1116         * gnu/CORBA/Poa/gnuPOA.java,
1117         * gnu/CORBA/Poa/gnuPOAManager.java,
1118         * gnu/CORBA/Poa/gnuServantObject.java,
1119         * gnu/CORBA/typecodes/FixedTypeCode.java,
1120         * gnu/CORBA/typecodes/RecursiveTypeCode.java,
1121         * gnu/java/awt/AWTUtilities.java,
1122         * gnu/java/awt/peer/gtk/CairoGraphics2D.java,
1123         * gnu/java/awt/peer/gtk/CairoSurface.java,
1124         * gnu/java/awt/peer/swing/SwingMenuBarPeer.java,
1125         * gnu/java/text/AttributedFormatBuffer.java,
1126         * gnu/java/util/regex/REToken.java,
1127         * gnu/javax/imageio/gif/GIFFile.java,
1128         * gnu/javax/imageio/png/PNGDecoder.java,
1129         * gnu/javax/management/Server.java,
1130         * gnu/javax/naming/giop/ContextContinuation.java,
1131         * gnu/javax/naming/jndi/url/rmi/ContextContinuation.java,
1132         * gnu/javax/swing/text/html/css/Selector.java,
1133         * gnu/javax/swing/text/html/parser/models/node.java,
1134         * gnu/javax/swing/text/html/parser/support/Parser.java,
1135         * gnu/javax/swing/text/html/parser/support/low/ReaderTokenizer.java,
1136         * gnu/javax/swing/text/html/parser/support/textPreProcessor.java,
1137         * gnu/xml/util/Resolver.java,
1138         * java/awt/image/AreaAveragingScaleFilter.java,
1139         * java/beans/Beans.java,
1140         * java/beans/XMLDecoder.java,
1141         * java/beans/beancontext/BeanContextServicesSupport.java,
1142         * java/beans/beancontext/BeanContextSupport.java,
1143         * java/io/CharArrayWriter.java,
1144         * java/lang/System.java,
1145         * java/net/ResolverCache.java,
1146         * java/util/Calendar.java,
1147         * java/util/Collections.java,
1148         * java/util/Formatter.java,
1149         * javax/accessibility/AccessibleEditableText.java,
1150         * javax/imageio/ImageReader.java,
1151         * javax/imageio/ImageTypeSpecifier.java,
1152         * javax/imageio/ImageWriter.java,
1153         * javax/imageio/spi/ServiceRegistry.java,
1154         * javax/imageio/stream/ImageInputStream.java,
1155         * javax/management/MBeanPermission.java,
1156         * javax/rmi/CORBA/PortableRemoteObjectDelegate.java,
1157         * javax/rmi/CORBA/Util.java,
1158         * javax/rmi/CORBA/UtilDelegate.java,
1159         * javax/rmi/CORBA/ValueHandler.java,
1160         * javax/rmi/PortableRemoteObject.java,
1161         * org/ietf/jgss/GSSContext.java,
1162         * tools/gnu/classpath/tools/appletviewer/PluginAppletWindow.java,
1163         * tools/gnu/classpath/tools/appletviewer/StandaloneAppletWindow.java,
1164         * tools/gnu/classpath/tools/appletviewer/TagParser.java,
1165         * vm/reference/gnu/java/nio/VMChannel.java:
1166         Correct javadoc to match the functions' parameters
1167         * gnu/java/awt/peer/swing/SwingTextFieldPeer.java:
1168         Rename start_pos parameter to startPos to conform to style.
1169
1170 2008-01-07  Jeroen Frijters  <jeroen@frijters.net>
1171
1172         * java/awt/image/Raster.java
1173         (createInterleavedRaster): Fixed ComponentSampleModel constructor
1174         argument order.
1175
1176 2008-01-03  Andrew John Hughes  <gnu_andrew@member.fsf.org>
1177
1178         PR classpath/34579:
1179         * m4/acinclude.m4:
1180         (CLASSPATH_CHECK_JAVAC): Don't rely on 1.5 class
1181         library.
1182         
1183 2008-01-01  Andrew John Hughes  <gnu_andrew@member.fsf.org>
1184
1185         * ChangeLog-2007: New file.
1186
1187 \f
1188 Local Variables:
1189 coding: iso-latin-1-unix        
1190 End: