-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
8660 lines (8276 loc) · 367 KB
/
ChangeLog
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2013-09-04 Andrew John Hughes <[email protected]>
* javax/lang/model/SourceVersion.java:
(RELEASE_7): New enum value.
* javax/lang/model/UnknownEntityException.java:
New exception class.
(UnknownEntityException(String)): New constructor.
* javax/lang/model/element/ElementKind.java:
(RESOURCE_VARIABLE): New enum value.
* javax/lang/model/element/ExecutableElement.java:
Extend mixin interface Parameterizable.
* javax/lang/model/element/PackageElement.java:
Extend mixin interface QualifiedNameable.
* javax/lang/model/element/Parameterizable.java:
New interface.
(getTypeParameters()): New method.
* javax/lang/model/element/QualifiedNameable.java:
New interface.
(getQualifiedName()): New method.
* javax/lang/model/element/TypeElement.java:
Extend mixin interfaces Parameterizable and QualifiedNameable.
* javax/lang/model/element/UnknownAnnotationValueException.java:
Extend UnknownEntityException instead of RuntimeException.
(UnknownAnnotationValueException(AnnotationValue,Object)):
Call superclass with error message.
* javax/lang/model/element/UnknownElementException.java:
Extend UnknownEntityException instead of RuntimeException.
(UnknownElementException(Element,Object)): End sentence
with a full stop, not a comma.
* javax/lang/model/type/MirroredTypeException.java:
Extend MirroredTypesException instead of RuntimeException.
(mirror): Removed.
(MirroredTypeException(TypeMIrror)): Store mirror using list
in superclass rather than a local variable.
(getTypeMirror()): Return first (and only) element from
getTypeMirrors().
* javax/lang/model/type/TypeKind.java:
(UNION): New enum value.
* javax/lang/model/type/TypeVisitor.java:
(visitUnion(UnionType,P)): New method.
* javax/lang/model/type/UnionType.java:
New interface.
(getAlternatives()): New method.
* javax/lang/model/type/UnknownTypeException.java,
Extend UnknownEntityException instead of RuntimeException.
(UnknownTypeException(TypeMirror,Object)):
Call superclass with error message.
2013-08-07 Andrew John Hughes <[email protected]>
* doc/cp-tools.texinfo:
Fix bad use of gccoptlist.
2013-07-10 Andrew John Hughes <[email protected]>
* NEWS: Mention PR57070.
2013-07-03 Andrew John Hughes <[email protected]>
* javax/lang/model/util/ElementFilter.java:
(typesIn(Iterable)): Implemented.
(constructorsIn(Iterable)): Likewise.
(fieldsIn(Iterable)): Likewise.
(methodsIn(Iterable)): Likewise.
(packagesIn(Iterable)): Likewise.
(FilteredList(Iterable,ElementKind...)): Fix
documentation.
(FilteredIterator): Make non-final so it can
be subclassed.
(FilteredIterator.kinds): Make protected, allowing
access form subclass.
(FilteredList): New class.
(FilteredList.elements): The filtered Iterable.
(FilteredList.kinds): The kinds to allow.
(FilteredList.FilteredList(Iterable,ElementKind...)):
New constructor.
(FilteredList.listIterator(int)): New method.
(FilteredList.size()): Likewise.
(FilteredListIterator): New class.
(FilteredListIterator.listIterator): The underlying
iterator.
(FilteredListIterator.index): The position.
(FilteredListIterator.cache): The cache of elements.
(FilteredListIterator.FilteredListIterator(iterator,
index,kinds)): New constructor.
(FilteredListIterator.next()): New method.
(FilteredListIterator.add(E)): Likewise.
(FilteredListIterator.hasPrevious()): Likewise.
(FilteredListIterator.previous()): Likewise.
(FilteredListIterator.nextIndex()): Likewise.
(FilteredListIterator.previousIndex()): Likewise.
(FilteredListIterator.set(E)): Likewise.
2013-06-06 Andrew John Hughes <[email protected]>
* examples/gnu/classpath/examples/awt/AicasGraphicsBenchmark.java:
(AicasGraphicsBenchmark()): Use absolute paths
to resources so they work within the zip file.
2013-06-06 Andrew John Hughes <[email protected]>
* native/jni/gstreamer-peer/gst_classpath_src.c:
Define GLIB_DISABLE_DEPRECATION_WARNINGS so
the use of GStaticRecMutex in GStreamer still works.
* native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c:
(init_glib_threads(JNIEnv,jint,jobject)): Only
call g_thread_init on GLib < 2.32.
2013-06-04 Andrew John Hughes <[email protected]>
* gnu/java/security/PolicyFile.java:
(parse(URL)): Fix missing bracket.
2013-05-26 Andrew John Hughes <[email protected]>
* gnu/java/security/PolicyFile.java:
(fs): Remove unnecessary cast.
(DEFAULT_POLICY): Likewise.
(DEFAULT_USER_POLICY): Likewise.
(cs2pc): Add type parameters.
(PolicyFile): Likewise.
(getPermissions(CodeSource)): Use for-each loops
and remove unnecessary casts.
(refresh()): Add missing type parameters.
(parse(URL)): Likewise and remove unnecessary casts.
2013-05-26 Andrew John Hughes <[email protected]>
* gnu/java/net/loader/JarURLLoader.java:
(indexSet): Add type parameter.
(JarURLLoader(URLClassLoader,URLStreamHandlerCache,
URLStreamHandlerFactory,URL,URL,Set)): Add type
parameter to Set.
* gnu/java/net/loader/URLLoader.java:
(getClass(String)): Add type parameter to return type.
* gnu/java/net/protocol/http/HTTPConnection.java:
(run()): Remove redundant cast.
(get(String,int,boolean,int,int)): Add type parameter
to ListIterator and drop cast.
(removeOldest()): Remove redundant cast.
(getSocket()): Add type parameter to Iterator and
drop cast.
2013-05-26 Andrew John Hughes <[email protected]>
* THANKYOU: List Carl Ritson.
2013-04-25 Carl Ritson <[email protected]>
* vm/reference/java/lang/VMProcess.java,
(ProcessThread.run()): Use notifyAll not notify.
(ProcessThread.spawn()): Likewise.
(VMProcess(String[],String[],File,boolean)): Likewise.
2013-02-17 Andrew John Hughes <[email protected]>
Fix warnings.
* java/util/TreeMap.java:
(nil): Add type parameters.
(root): Likewise.
(left): Don't set to nil here.
(right): Likewise.
(parent): Likewise.
(Node(K,V,int)): Set left, right and parent
here using correctly typed nil.
(TreeMap()): Cast Comparator with type parameters.
(TreeMap(Map)): Likewise.
(TreeMap(SortedMap)): Remove unused variable. Use
for-each loop and typed nil.
(clone()): Separate cast and cloning. Add type
parameters to node and cnode.
(containsKey(Object)): Cast key.
(containsvalue()): Add type parameters to node.
(get(Object)): Cast key.
(headMap(K,boolean)): Likewise.
(put(K,V)): Cast nil before assigning to parent.
Add type parameters to n.
(putAll(Map)): Rewrite using for-each loop.
(remove(Object)): Cast key.
(tailMap(K,boolean)): Likewise.
(values()): Add type parameter to iterator.
(compare(K,K)): Suppress warnings.
(fabricateTree(int)): Use typed nil.
Add type parameters to root, row, parent, last,
left, right and next.
(firstNode()): Add type parameters to node.
(highestLessThan(K,boolean)): Use typed nil.
(insertFixup(Node)): Add type parameters to
uncle.
(lastNode()): Add type parameters to node.
(lowestGreaterThan(K,boolean,boolean)):
Use typed nil.
(predecessor(Node)): Add type parameters to
parent.
(putFromObjStream(ObjectInputStream,int,V)):
Pass value with type rather than using String.
Add type parameter to node.
(putKeysLinear(Iterator,int,V)): Pass in value
rather than using empty string.
(readObject(ObjectInputStream)): Call putFromObjStream
with null rather than true.
(removeNode(Node)): Add type parameters to parent.
(rotateLeft(Node)): Add type parameters to child.
(rotateRight(Node)): Likewise.
(writeObject(ObjectOutputStream)): Add type parameters
to node.
(TreeIterator): Add type parameter.
(TreeIterator.last): Likewise.
(TreeIterator.next): Likewise.
(TreeIterator.max): Likewise.
(TreeIterator.TreeIterator(int)): Cast nil.
(TreeIterator.TreeIterator(int,Node,Node)): Add type
parameters.
(TreeIterator.next()): Suppress warnings and cast to
correct type.
(descendingMap()): Add type parameters.
(clear()): Add type parameters to next, max and current.
(SubMap.containsKey(Object)): Fix casting of key.
(SubMap.containsValue(Object)): Add type parameters to
node and max.
(SubMap.get(Object)): Fix casting of key.
(SubMap.remove(Object)): Likewise.
(SubMap.size()): Add type parameters to node and max.
(SubMap.values()): Add type parameter to AbstractCollection,
first, max and TreeIterator.
(SubMap.KeySet.iterator()): Add type parameters to first and
max.
(SubMap.KeySet.contains(Object)): Fix casting of key.
(SubMap.KeySet.remove(Object)): Likewise.
(SubMap.NavigableKeySet.descendingSet()): Add type parameter
to DescendingSet.
(SubMap.EntrySet.iterator()): Add type parameters to first
and max.
(SubMap.EntrySet.contains(Object)): Fix casting of entry.
(SubMap.EntrySet.remove(Object)): Likewise.
(SubMap.NavigableEntrySet.descendingSet()): Add type
parameter to DescendingSet.
(SubMap.NavigableEntrySet.tailSet(Entry,boolean)): Return
entry set, not key set.
(DescendingMap.headMap(DK,boolean)): Add type parameters.
(DescendingMap.subMap(DK,boolean,DK,boolean)): Likewise.
(DescendingMap.tailMap(Dk,boolean)): Likewise.
(DescendingMap.values()): Add type parameter to
AbstractCollection.
(KeySet.iterator()): Add type parameter to TreeIterator.
(KeySet.remove(Object)): Fix casting of key.
(NavigableKeySet.headSet(D,boolean)): Add type parameter.
(NavigableKeySet.subSet(D,boolean,D,boolean)): Likewise.
(NavigableKeySet.tailSet(D,boolean)): Likewise.
(NavigableKeySet.toArray()): Suppress warnings on cast.
(NavigableKeySet.toArray(T[])): Likewise.
(EntrySet.iterator()): Add type parameter to TreeIterator.
(EntrySet.contains(Object)): Fix casting of entry.
(EntrySet.remove(Object)): Likewise.
(NavigableEntrySet.descendingSet()): Add type
parameter to DescendingSet.
(NavigableEntrySet.tailSet(Entry,boolean)): Return
entry set, not key set.
* java/util/TreeSet.java:
(TreeSet(SortedSet)): Explicitly pass empty String to
putKeysLinear as it no longer defaults to this.
(readObject(ObjectInputStream)): Pass empty String rather
than false, which will in turn make "" == null return false
in putFromObjStream.
2013-03-12 Pekka Enberg <[email protected]>
* autogen.sh:
Check that gettext.m4 is installed.
2013-03-09 Pekka Enberg <[email protected]>
* .gitignore: Exclude autogen-generated files.
2013-03-04 Andrew John Hughes <[email protected]>
* gnu/classpath/Pair.java:
(equals(Object)): Cast to Pair<?,?> not Pair<A,B>
as we don't know that the objects held by the pair
are of the same type.
* gnu/classpath/ServiceProviderLoadingAction.java:
(run()): Suppress warning as we check the loaded
class is an instance of P.
* gnu/classpath/jdwp/Jdwp.java:
(_properties): Add type parameters.
(notify(Event[])): Likewise.
(_processConfigury(String)): Likewise.
* gnu/classpath/jdwp/event/ClassPrepareEvent.java:
(_class): Add type parameter.
(ClassPrepareEvent(Thread,class,int)): Likewise.
* gnu/classpath/jdwp/event/ClassUnloadEvent.java:
(writeData(DataOutputStream)): Don't store result
of getDefault() call as unused. Retain for
side-effects.
* gnu/classpath/jdwp/event/EventManager.java:
(_requests): Add type parameters.
(EventManager()): Likewise & use Byte.valueOf
rather than new.
(getEventRequests(Event)): Likewise and remove
unneeded cast.
(requestEvent(EventRequest)): Add type parameters,
remove unneeded cast and use Integer.valueOf
rather than new.
(deleteRequest(byte,int)): Add type parameters,
use valueOf methods instead of constructors
and drop unneeded cast.
(clearRequests(byte)): Add type parameters
and use Byte.valueOf.
(getRequest(byte,int)): Likewise and drop
unused cast and use Integer.valueOf.
(getRequests(byte)): Add type parameters
and use Byte.valueOf.
* gnu/classpath/jdwp/event/EventRequest.java:
(_filters): Add type parameter.
(EventRequest(byte,byte)): Likewise.
(EventRequest(int,byte,byte)): Likewise.
(addFilter(IEventFilter)): Likewise.
(getFilters()): Likewise.
(matches(Event)): Likewise and remove unneeded
cast.
* gnu/classpath/jdwp/event/ExceptionEvent.java:
(_klass): Add type parameter.
(ExceptionEvent(Throwable,Thread,Location,Location,
Class,Object)): Likewise.
* gnu/classpath/jdwp/event/filters/ClassMatchFilter.java:
(matches(Event)): Add type parameter.
* gnu/classpath/jdwp/event/filters/ClassOnlyFilter.java:
(matches(Event)): Add type parameters.
* gnu/classpath/jdwp/event/filters/ExceptionOnlyFilter.java:
(matches(Event)): Add type parameter.
* gnu/classpath/jdwp/event/filters/FieldOnlyFilter.java:
(FieldOnlyFilter(ReferenceTypeId,ReferenceTypeId)):
Avoid throwing a NullPointerException by using new
constructors for InvalidClassException and
InvalidFieldException.
* gnu/classpath/jdwp/exception/InvalidClassException.java:
(InvalidClassException()): New constructor for when there is
no ID (i.e. null was passed).
* gnu/classpath/jdwp/exception/InvalidFieldException.java
(InvalidFieldException()): New constructor for when there is
no ID (i.e. null was passed).
* gnu/classpath/jdwp/id/ClassLoaderId.java:
(typeClass): Add type parameter.
* gnu/classpath/jdwp/id/ClassObjectId.java,
(typeClass): Add type parameter.
(getClassObject()): Add type parameters.
* gnu/classpath/jdwp/id/JdwpId.java:
(_reference): Add type parameter.
(getReference()): Likewise.
(setReference(SoftReference)): Likewise.
* gnu/classpath/jdwp/id/NullObjectId.java:
(typeClass): Add type parameter.
(NullObjectId()): Change type parameter to same
used by superclass.
* gnu/classpath/jdwp/id/ObjectId.java:
(typeClass): Add type parameter.
* gnu/classpath/jdwp/id/ReferenceTypeId.java:
(getType()): Add type parameters.
* gnu/classpath/jdwp/id/StringId.java,
* gnu/classpath/jdwp/id/ThreadGroupId.java,
* gnu/classpath/jdwp/id/ThreadId.java:
(typeClass): Add type parameter.
* gnu/classpath/jdwp/processor/ArrayReferenceCommandSet.java:
(executeGetvalues(ByteBuffer,DataOutputStream)):
Add type parameter.
(executeSetValues(ByteBuffer,DataOutputStream)): Likewise.
* gnu/classpath/jdwp/processor/ArrayTypeCommandSet.java:
(executeNewInstance(ByteBuffer,DataOutputStream)): Add type
parameters.
* gnu/classpath/jdwp/processor/ClassLoaderReferenceCommandSet.java:
(executeVisibleClasses(ByteBuffer,DataOutputStream)):
Add type parameters. Hide warnings from VM layer for now.
* gnu/classpath/jdwp/processor/ClassObjectReferenceCommandSet.java:
(executeReflectedType(ByteBuffer,DataOutputStream)): Add
type parameter.
* gnu/classpath/jdwp/processor/ClassTypeCommandSet.java:
(executeSuperclass(ByteBuffer,DataOutputStream)): Add
type parameter.
(executeSetValues(ByteBuffer,DataOutputStream)):
Call readReferenceTypeId only for side effect of changing
the ByteBuffer. Result not needed.
(invokeMethod(ByteBuffer)): Add type parameter.
* gnu/classpath/jdwp/processor/MethodCommandSet.java:
(executeLineTable(ByteBuffer,DataOutputStream)): Add type
parameter.
(executeVariableTable(ByteBuffer,DataOutputStream)): Likewise.
(executeByteCodes(ByteBuffer,DataOutputStream)): Likewise.
* gnu/classpath/jdwp/processor/ObjectReferenceCommandSet.java:
(executeReferenceType(ByteBuffer,DataOutputStream)): Add type
parameter.
(executeInvokeMethod(ByteBuffer,DataOutputStream)): Likewise.
* gnu/classpath/jdwp/processor/PacketProcessor.java:
Add type parameter to implemented interface.
(run()): Change return type to match type parameter.
* gnu/classpath/jdwp/processor/ReferenceTypeCommandSet.java:
(executeClassLoader(ByteBuffer,DataOutputStream)): Add type
parameter.
(executeModifiers(ByteBuffer,DataOutputStream)): Likewise.
(executeFields(ByteBuffer,DataOutputStream)): Likewise.
(executeMethods(ByteBuffer,DataOutputStream)): Likewise.
(executeGetValues(ByteBuffer,DataOutputStream)): Likewise.
(executeSourceFile(ByteBuffer,DataOutputStream)): Likewise.
(executeNestedTypes(ByteBuffer,DataOutputStream)): Add type
parameters.
(executeStatus(ByteBuffer,DataOutputStream)): Add type parameter.
(executeInterfaces(ByteBuffer,DataOutputStream)): Add type
parameters.
(executeClassObject(ByteBuffer,DataOutputStream)): Add type parameter.
* gnu/classpath/jdwp/processor/StackFrameCommandSet.java:
(runCommand(ByteBuffer,DataOutputStream,byte)): Remove
unused keepRunning variable.
* gnu/classpath/jdwp/processor/ThreadReferenceCommandSet.java:
(executeFrames(ByteBuffer,DataOutputStream)): Add type parameter,
suppressing warnings from VM layer until fixed. Remove
unnecessary cast.
* gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java:
(executeClassesBySignature(ByteBuffer,DataOutputStream)):
Add type parameters, suppressing warnings from VM layer.
(executeAllClasses(ByteBuffer,DataOutputStream)): Likewise.
(executeRedefineClasses(ByteBuffer,DataOutputStream)):
Add type parameter.
* gnu/classpath/jdwp/transport/ITransport.java:
(configure(HashMap)): Add type parameters.
* gnu/classpath/jdwp/transport/JdwpConnection.java:
(_commandQueue): Add type parameter.
(JdwpConnection(ThreadGroup,ITransport)): Likewise.
(getPacket()): Remove unnecessary cast.
* gnu/classpath/jdwp/transport/JdwpPacket.java:
(fromBytes(byte[])): Add type parameter.
* gnu/classpath/jdwp/transport/SocketTransport.java:
(configure(HashMap)): Add type parameters. Remove
unnecessary cast.
* gnu/classpath/jdwp/transport/TransportFactory.java:
(clazz): Add type parameter.
(TransportMethod(String,Class)): Likewise.
(newInstance(HashMap)): Add type parameters. Remove
unnecessary cast.
* gnu/classpath/jdwp/util/Location.java:
(Location(ByteBuffer)): Don't store return value of
first bb.get() call as unneeded. Add type parameter.
* gnu/classpath/jdwp/util/Signature.java:
(computeClassSignature(Class)): Add type parameter.
(_computeSignature(Class,Class[])): Likewise.
(_addToSignature(CPStringBuilder,Class)): Likewise.
* gnu/classpath/jdwp/value/Value.java:
(getUntaggedObject(ByteBuffer,Class)): Add type
parameter.
* gnu/classpath/jdwp/value/ValueFactory.java:
(createFromUntagged(ByteBuffer,Class)): Add type
parameter.
(getTagForClass(Class)): Likewise.
(createFromObject(Object,Class)): Likewise.
2013-02-26 Andrew John Hughes <[email protected]>
* gnu/classpath/ServiceFactory.java:
(LOGGER): Removed.
(lookupProviders(Class,ClassLoader,boolean)):
Use SystemLogger/Component mechanism for logging.
(ServiceIterator.loadNextServiceProvider()):
Likewise. Handle end-of-line comments as used
by ecj.
(advanceReader()): Use SystemLogger/Component
mechanism for logging.
(log(Component,Throwable,String,Object...)):
Change signature to use Component and take
a variable length series of Objects. Call
SystemLogger instance rather than using
local logging.
* gnu/classpath/debug/Component.java:
(EVERYTHING): Extend range to include new components.
(SSL_HANDSHAKE): Avoid spaces in name and change to
match variable name for lookup.
(SSL_RECORD_LAYER): Likewise.
(SSL_KEY_EXCHANGE): Likewise.
(SSL_DELEGATED_TASK): Likewise.
(SERVICE_LOADING): New component for ServiceFactory.
(SERVICE_LOADING_WARNING): Likewise.
(SERVICE_LOADING_VERBOSE): Likewise.
* gnu/classpath/debug/PreciseFilter.java:
(isLoggable(LogRecord)): Use instanceof rather
than triggering a ClassCastException and the whole
exception throwing mechanism.
* gnu/classpath/debug/SystemLogger.java:
(static): Fully initialise logger so all selection
is handled by the filter.
(logp(Component,String,String,Throwable,String,Object...)):
Adapted from log method in ServiceFactory. Handles
logging with both a Throwable and our own message.
* java/util/logging/Formatter.java:
Correct comment typo.
* javax/tools/ToolProvider.java:
Implemented.
(compiler): New field.
(COMPILER_CLASS): New constant field.
(getSystemJavaCompiler()): Return ecj if available.
(getSystemToolClassLoader()): Return classloader used
to load compiler.
(getCompilerClass()): Assistance method for finding
the compiler class.
(log(Component,Throwable,String,Object...)):
Logging method to auto-include the source class/method used
locally.
2013-02-21 Andrew John Hughes <[email protected]>
* javax/annotation/processing/AbstractProcessor.java:
New class added.
(processingEnv): Added.
(initialized): Likewise.
(AbstractProcessor()): Implemented.
(getCompletions(Element,AnnotationMirror,ExecutableElement,
String)): Likewise.
(getSupportedAnnotationTypes()):Likewise.
(getSupportedOptions()): Likewise.
(getSupportedSourceVersion()): Likewise.
(init(ProcessingEnvironment)): Likewise.
(isInitialized()): Likewise.
(process(Set,RoundEnvironment)): Likewise.
* javax/annotation/processing/Completion.java:
New interface added.
(getValue()): Added.
(getMessage()): Likewise.
* javax/annotation/processing/Processor.java:
(getCompletions(Element,AnnotationMirror,ExecutableElement,
String)): Added.
* javax/annotation/processing/SupportedAnnotationTypes.java:
New annotation added.
(value()): Added.
* javax/annotation/processing/SupportedOptions.java:
New annotation added.
(value()): Added.
* javax/annotation/processing/SupportedSourceVersion.java:
Reference AbstractProcessor in documentation.
2013-02-18 Andrew John Hughes <[email protected]>
* javax/lang/model/SourceVersion.java,
(KEYWORDS): Add array containing language keywords.
(isKeyword(CharSequence)): Implemented.
(isName(CharSequence)): Likewise.
2013-02-18 Andrew John Hughes <[email protected]>
* javax/annotation/processing/SupportedSourceVersion.java:
Implemented.
(value()): Implemented.
* javax/lang/model/element/ElementVisitor.java:
Fix typo: "implementators" should be "implementors".
* javax/lang/model/element/UnknownElementException.java:
(UnknownElementException(Element,Object)): Set message
using superclass constructor.
* javax/lang/model/util/AbstractElementVisitor6.java:
Implemented.
(AbstractElementVisitor6()): Implemented.
(visit(Element)): Likewise.
(visit(Element,P)): Likewise.
(visitUnknown(Element,P)): Likewise.
* javax/lang/model/util/ElementScanner6.java:
Implemented.
(ElementScanner6()): Implemented.
(ElementScanner6(R)): Likewise.
(scan(Element)): Likewise.
(scan(Element, P)): Likewise.
(scan(Iterable, P)): Likewise.
(visitExecutable(ExecutableElement, P)): Likewise.
(visitPackage(PackageElement, P)): Likewise.
(visitType(TypeElement, P)): Likewise.
(visitTypeParameter(TypeElement, P)): Likewise.
(visitVariable(VariableElement, P)): Likewise.
* javax/lang/model/util/SimpleElementVisitor6.java,
Implemented.
(DEFAULT_VALUE): Added.
(SimpleElementVisitor6()): Implemented.
(SimpleElementVisitor6(R)): Likewise.
(defaultAction(Element, P)): Likewise.
(visitExecutable(ExecutableElement, P)): Likewise.
(visitPackage(PackageElement, P)): Likewise.
(visitType(TypeElement, P)): Likewise.
(visitTypeParameter(TypeElement, P)): Likewise.
(visitVariable(VariableElement, P)): Likewise.
* javax/tools/ForwardingJavaFileManager.java:
Implemented.
(fileManager): Added.
(ForwardingJavaFileManager(M)): Implemented.
(close()): Likewise.
(flush()): Likewise.
(getClassLoader(JavaFileManager.Location)): Likewise.
(getFileForInput(JavaFileManager.Location, String,
String)): Likewise.
(getFileForOutput(JavaFileManager.Location, String,
String, FileObject)): Likewise.
(getJavaFileForInput(JavaFileManager.Location, String,
JavaFileObject.Kind)): Likewise.
(getJavaFileForOutput(JavaFileManager.Location, String,
JavaFileObject.Kind, FileObject)): Likewise.
(handleOption(String,Iterator)): Likewise.
(hasLocation(JavaFileManager.Location)): Likewise.
(inferBinaryName(JavaFileManager.Location, JavaFileObject)):
Likewise.
(isSameFile(FileObject, FileObject)): Likewise.
(isSupportedOption(String)): Likewise.
(list(JavaFileManager.Location, String, Set, boolean)):
Likewise.
2013-02-03 Andrew John Hughes <[email protected]>
* javax/lang/model/util/ElementFilter.java:
(constructorsIn(Set)): Implemented.
(fieldsIn(Set)): Likewise.
(methodsIn(Set)): Likewise.
(packagesIn(Set)): Likewise.
2013-02-01 Andrew John Hughes <[email protected]>
* javax/lang/model/element/ElementKind.java:
(ANNOTATION_TYPE): Documented.
(CLASS): Likewise.
(CONSTRUCTOR): Likewise.
(ENUM): Likewise.
(ENUM_CONSTANT): Likewise.
(EXCEPTION_PARAMETER): Likewise.
(FIELD): Likewise.
(INSTANCE_INIT): Likewise.
(INTERFACE): Likewise.
(LOCAL_VARIABLE): Likewise.
(METHOD): Likewise.
(OTHER): Likewise.
(PACKAGE): Likewise.
(PARAMETER): Likewise.
(STATIC_INIT): Likewise.
(TYPE_PARAMETER): Likewise.
(isClass()): Implemented.
(isField()): Likewise.
(isInterface()): Likewise.
2013-02-01 Andrew John Hughes <[email protected]>
The type of element should be determined by
its kind, not by the class.
* javax/lang/model/util/ElementFilter.java:
(typesIn(Set)): Pass list of type kinds to
FilteredSet constructor, rather than
TypeElement.class.
(ElementFilter.clazz): Removed.
(ElementFilter.kinds): Added.
(FilteredSet(Set,ElementKind...)): Take a varargs
list of ElementKinds rather than a class.
(FilteredSet.contains(Object)): Make test dependent
on whether the element's kind is in the array of kinds,
not whether it is an instance of a class.
(FilteredSet.iterator()): Use new FilteredIterator constructor.
(FilteredSet.remove(Object)): Call contains to check if
filtered out or not.
(FilteredSet.size()): Replace isInstance with binary search
of kinds array.
(FilteredSet.toArray(T[])): Cast to Object[] to populate
array to avoid warning.
(FilteredSet.toString()): Return normal toString() output for a
collection using the filtered iterator.
(FilteredIterator.clazz): Removed.
(FilteredIterator.kinds): Added.
(FilteredIterator.next): Set type to Element not E.
(FilteredIterator(Iterator, ElementKind...)): Again,
use varargs list of ElementKinds rather than class.
(FilteredIterator.hasNext()): Replace instanceof
with binary search.
(FilteredIterator.next()): Suppress warnings when
casting to E. Safe as we know it's an E via the
kind test.
2013-01-10 Matthias Klose <[email protected]>
* tools/gnu/classpath/tools/gjdoc/Main.java: Accept -source 1.5,
1.6, 1.7.
2013-01-04 Andrew John Hughes <[email protected]>
* javax/lang/model/element/AnnotationValueVisitor.java:
(visitUnknown(AnnotationValue,P)): Mention throwing of
UnknownAnnotationValueException in documentation.
* javax/lang/model/element/ElementVisitor.java:
(visitUnknown(Element,P)): Likewise for
UnknownElementException.
* javax/lang/model/element/UnknownAnnotationValueException.java:
Implemented.
(serialVersionUID): New field.
(annValue): Likewise.
(param): Likewise.
(UnknownAnnotationValueException(AnnotationValue,Object)):
Implemented.
(getArgument()): Likewise.
(getUnknownAnnotationValue()): Likewise.
* javax/lang/model/element/UnknownElementException.java,
Implemented.
(serialVersionUID): New field.
(element): Likewise.
(param): Likewise.
(UnknownElementException(Element,Object)):
Implemented.
(getArgument()): Likewise.
(getUnknownElement()): Likewise.
* javax/lang/model/type/MirroredTypeException.java,
Implemented.
(serialVersionUID): New field.
(mirror): Likewise.
(MirroredTypeException(TypeMirror)): Implemented.
(getTypeMirror()): Likewise.
* javax/lang/model/type/MirroredTypesException.java,
Implemented.
(serialVersionUID): New field.
(mirrors): Likewise.
(MirroredTypeException(List)): Implemented.
(getTypeMirrors()): Likewise.
* javax/lang/model/type/TypeVisitor.java,
(visitUnknown(TypeMirror,P)): Mention throwing of
UnknownTypeException in documentation.
* javax/lang/model/type/UnknownTypeException.java,
Implemented.
(serialVersionUID): New field.
(type): Likewise.
(param): Likewise.
(UnknownTypeException(TypeMirror,Object)):
Implemented.
(getArgument()): Likewise.
(getUnknownType()): Likewise.
2012-12-28 Andrew John Hughes <[email protected]>
* gnu/xml/validation/datatype/AnySimpleType.java:
(AnySimpleType()): Remove unneeded cast.
* gnu/xml/validation/datatype/AtomicSimpleType.java:
(AtomicSimpleType(QName,Set,int,SimpleType,
Annotation)): Add type parameter to Set.
* gnu/xml/validation/datatype/BooleanType.java:
(VALUE_SPACE): Likewise.
* gnu/xml/validation/datatype/DoubleType.java:
(SPECIAL): Likewise.
* gnu/xml/validation/datatype/DurationType.java:
(Duration): Implement Comparable<Duration> not
Comparable.
(Duration.hashCode()): Add @Override.
(Duration.equals(Object)): Likewise.
(Duration.compareTo(Duration)): Likewise and
use specific type, which also fixes issue with
it returning 0 for other objects, rather than
throwing a ClassCastException.
(createValue(String,ValidationContext)): Remove
unused months field. Set duration.years from
years.
* gnu/xml/validation/datatype/FloatType.java:
(SPECIAL): Add type parameter.
* gnu/xml/validation/datatype/GDayType.java,
(GDay): Implement Comparable<GDay> not
Comparable.
(GDay.hashCode()): Add @Override.
(GDay.equals(Object)): Likewise.
(GDay.compareTo(GDay)): Likewise and
use specific type, which also fixes issue with
it returning 0 for other objects, rather than
throwing a ClassCastException.
* gnu/xml/validation/datatype/GMonthDayType.java:
(GMonthDay): Implement Comparable<GMonthDay> not
Comparable.
(GMonthDay.hashCode()): Add @Override.
(GMonthDay.equals(Object)): Likewise.
(GMonthDay.compareTo(GMonthDay)): Likewise and
use specific type, which also fixes issue with
it returning 0 for other objects, rather than
throwing a ClassCastException.
* gnu/xml/validation/datatype/GMonthType.java:
(GMonth): Implement Comparable<GMonth> not
Comparable.
(GMonth.hashCode()): Add @Override.
(GMonth.equals(Object)): Likewise.
(GMonth.compareTo(GMonth)): Likewise and
use specific type, which also fixes issue with
it returning 0 for other objects, rather than
throwing a ClassCastException.
* gnu/xml/validation/datatype/GYearMonthType.java,
(GYearMonth): Implement Comparable<GYearMonth> not
Comparable.
(GYearMonth.hashCode()): Add @Override.
(GYearMonth.equals(Object)): Likewise.
(GYearMonth.compareTo(GYearMonth)): Likewise and
use specific type, which also fixes issue with
it returning 0 for other objects, rather than
throwing a ClassCastException.
* gnu/xml/validation/datatype/GYearType.java,
(GYear): Implement Comparable<GYear> not
Comparable.
(GYear.hashCode()): Add @Override.
(GYear.equals(Object)): Likewise.
(GYear.compareTo(GYear)): Likewise and
use specific type, which also fixes issue with
it returning 0 for other objects, rather than
throwing a ClassCastException.
* gnu/xml/validation/datatype/ListSimpleType.java:
(ListSimpleType(QName,Set,int,SimpleType,Annotation,
SimpleType)): Add type parameter to Set.
* gnu/xml/validation/datatype/MaxExclusiveFacet.java:
(matches(Object)): Use Comparable<Object>.
* gnu/xml/validation/datatype/MaxInclusiveFacet.java:
(matches(Object)): Likewise.
* gnu/xml/validation/datatype/MinExclusiveFacet.java:
(matches(Object)): Likewise.
* gnu/xml/validation/datatype/MinInclusiveFacet.java:
(matches(Object)): Likewise.
* gnu/xml/validation/datatype/SimpleType.java:
(facets): Add type parameter to Set.
(SimpleType(QName,int,Set,int,SimpleType,Annotation)):
Likewise.
(checkValid(String,ValidationContext)): Add type
parameter to Iterator and remove unnecessary cast.
* gnu/xml/validation/datatype/TimeType.java:
(Time): Implement Comparable<Time> not
Comparable.
(Time.hashCode()): Add @Override.
(Time.equals(Object)): Likewise.
(Time.compareTo(Time)): Likewise and
use specific type, which also fixes issue with
it returning 0 for other objects, rather than
throwing a ClassCastException.
* gnu/xml/validation/datatype/TypeBuilder.java:
(TypeBuilder(SimpleType)): Add type parameter.
* gnu/xml/validation/datatype/TypeLibrary.java:
(byName): Likewise.
(static): Likewise.
* gnu/xml/validation/datatype/UnionSimpleType.java:
(memberTypes): Likewise.
(UnionSimpleType(QName,Set,int,SimpleType,Annotation,List)):
Likewise.
(checkValid(String,ValidationContext)): Add type
parameter to Iterator and remove unnecessary cast.
* gnu/xml/validation/relaxng/DataPattern.java:
(params): Add type parameter.
* gnu/xml/validation/relaxng/FullSyntaxBuilder.java:
(VOCABULARY): Likewise.
(STRIPPED_ATTRIBUTES): Likewise.
(PATTERN_ELEMENTS): Likewise.
(EMPTY_STRING_SET): Added as a typesafe replacement for
Collections.EMPTY_SET.
(static): Add type parameters.
(urls): Likewise.
(datatypeLibraries): Likewise.
(parse(Document)): Likewise and remove redundant casts.
(getDefines(Set,Element,Element,boolean)): Add type parameter.
(getElements(Set,Element,Element)): Likewise.
(expandRefs(Set,Element)): Likewise.
(transform(Node)): Remove redundant casts and add type
parameters.
(handleRefs(Node,Node,Node)): Fix logic error found
by compiler. Check should be == null, not != null,
or name will be null when dereferenced.
(getComponents(Node)): Add type parameter.
(forbidDescendants(Node,Set)): Likewise.
(combineNodes(Node,String,String,List)): Likewise
and remove redundant cast.
(getDatatypeLibrary(String)): Add type parameter.
* gnu/xml/validation/relaxng/Grammar.java:
(defines): Add type parameter.
* gnu/xml/validation/xmlschema/ComplexType.java:
(attributeUses): Add type parameter.
(annotations): Likewise.
(ComplexType(QName,boolean,int,int)): Likewise.
* gnu/xml/validation/xmlschema/XMLSchema.java:
(elementDeclarations): Likewise.
(attributeDeclarations): Likewise.
(types): Likewise.
(XMLSchema(String,String,int,int,boolean,boolean)):
Likewise.
* gnu/xml/validation/xmlschema/XMLSchemaBuilder.java:
(parseSimpleType(QName)): Return type from schema if
non-null and add ones returned from typeLibrary before
returning.
(parseSimpleType(Node)): Remove unused variable and replace
with TODO. Add type parameter.
(parseRestriction(Node,ComplexType)): Likewise.
(parseExtension(Node,ComplexType)): Likewise.
* gnu/xml/validation/xmlschema/XMLSchemaValidatorHandler.java:
(context): Add type parameter.
(attributes): Likewise.
(XMLSchemaValidatorHandler(XMLSchema)): Likewise.
(getElementTypeInfo()): Remove redundant cast.
(getAttributeTypeInfo(int)): Likewise.
(isIdAttribute(int)): Likewise.
(isSpecified(int)): Likewise.
(startElement(String,String,String,Attributes)): Likewise.
2012-12-27 Andrew John Hughes <[email protected]>
* javax/lang/model/element/Element.java:
(getModifiers()): Added.
(getSimpleName()): Likewise.
* javax/lang/model/element/Modifier.java:
New enumeration.
(ABSTRACT): Added.
(FINAL): Likewise.
(NATIVE): Likewise.
(PRIVATE): Likewise.
(PROTECTED): Likewise.
(PUBLIC): Likewise.
(STATIC): Likewise.
(STRICTFP): Likewise.
(SYNCHRONIZED): Likewise.
(TRANSIENT): Likewise.
(VOLATILE): Likewise.
* javax/lang/model/element/NestingKind.java:
New enumeration.
(ANONYMOUS): Added.
(LOCAL): Likewise.
(MEMBER): Likewise.
(TOP_LEVEL): Likewise.
(isNested()): Implemented.
* javax/lang/model/element/TypeElement.java:
(getNestingKind()): Added.
* javax/tools/ForwardingJavaFileObject.java:
(getAccessLevel()): Implemented.
(getNestingKind()): Likewise.
* javax/tools/JavaFileObject.java:
(getAccessLevel()): Added.
(getNestingKind()): Likewise.
* javax/tools/SimpleJavaFileObject.java,
(getAccessLevel()): Implemented.
(getNestingKind()): Likewise.
2012-12-19 Andrew John Hughes <[email protected]>
* javax/annotation/processing/Messager.java:
(printMessage(Kind,CharSequence)): Added.
(printMessage(Kind,CharSequence,Element)): Likewise.
(printMessage(Kind,CharSequence,Element,
AnnotationMirror)): Likewise.
(printMessage(Kind,CharSequence,Element,
AnnotationMirror,AnnotationValue)): Likewise.
2012-12-19 Andrew John Hughes <[email protected]>
* javax/tools/SimpleJavaFileObject.java:
New class added.
(kind): New field.
(uri): Likewise.
(SimpleJavaFileObject(URI,Kind)): Implemented.
(delete()): Likewise.
(getCharContent(boolean)): Likewise.
(getName()): Likewise.
(getKind()): Likewise.
(getLastModified()): Likewise.
(isNameCompatible(String,Kind)): Likewise.
(openInputStream()): Likewise.
(openOutputStream()): Likewise.
(openReader(boolean)): Likewise.
(openWriter()): Likewise.
(toUri()): Likewise.
2012-12-18 Andrew John Hughes <[email protected]>
* javax/tools/JavaCompiler.java:
New interface added.
(CompilationTask): New inner interface.
(CompilationTask.call()): Added.
(CompilationTask.setLocale(Locale)): Likewise.
(CompilationTask.setProcessors(Iterable)): Likewise.
(getStandardFileManager(DiagnosticListener,Locale,Charset)):
Likewise.
(getTask(Writer,DiagnosticListener,Iterable,Iterable,Iterable)):
Likewise.
* javax/tools/StandardJavaFileManager.java:
New interface added.
(getJavaFileObjects(File...)): Added.
(getJavaFileObjects(String...)): Likewise.
(getJavaFileObjectsFromFiles(Iterable)): Likewise.
(getJavaFileObjectsFromStrings(Iterable)): Likewise.
(getLocation(Location)): Likewise.
(isSameFile(FileObject,FileObject)): Likewise.
(setLocation(Location,Iterable)): Likewise.
* javax/tools/Tool.java:
New interface added.
(getSourceVersions()): Added.
(run(InputStream,OutputStream,OutputStream,String...)): Likewise.
2012-12-17 Andrew Haley <[email protected]>
PR libgcj/55716
* tools/gnu/classpath/tools/javah/Main.java (parseClasses): Dont
scan inner classes if our item is a file.
2012-11-30 Andrew John Hughes <[email protected]>
* javax/lang/model/type/ArrayType.java:
Added.
(getComponentType()): Added.
* javax/lang/model/type/ErrorType.java:
Added.
* javax/lang/model/type/ExecutableType.java:
Added.
(getParameterTypes()): Added.
(getReturnType()): Likewise.
(getThrownTypes()): Likewise.
(getTypeVariables()): Likewise.