summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2005-09-19 23:29:58 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2005-09-19 23:29:58 +0000
commitd30cf1c6c0de86bac88773529f7071497ce18916 (patch)
tree189c3e903108f211d155c9389244895d9c86bdbf /ChangeLog
parente6ef276589e41dd1f7e566aa27344c8b5ac15ddf (diff)
downloadclasspath-d30cf1c6c0de86bac88773529f7071497ce18916.tar.gz
2005-09-19 Andrew John Hughes <gnu_andrew@member.fsf.org>
* java/util/Collections.java: Fixes Bug #PR22921. (emptySet()): Implemented. (emptyList()): Implemented. (emptyMap()): Implemented. (rotate(List<?>,int)): Fixed signature. (shuffle(List<?>)): Fixed signature. (shuffle(List<?>,Random)): Fixed signature. (frequency(Collection<?>,Object)): Documented. (addAll(Collection<? super T>, T... a)): Implemented. (disjoint(Collection<?>,Collection<?>)): Implemented. (swap(List<?>,int,int)): Fixed signature. (checkedCollection(Collection<E>,Class<E>)): Implemented. (Collections.CheckedCollection): New inner class. (Collections.CheckedIterator): New inner class. (checkedList(List<E>, Class<E>)): Implemented. (Collections.CheckedList): New inner class. (Collections.CheckedRandomAccessList): New inner class. (Collections.CheckedListIterator): New inner class. (checkedMap(Map<K,V>,Class<K>,Class<V>)): Implemented. (Collections.CheckedMap): New inner class. (checkedSet(Set<E>,Class<E>)): Implemented. (Collections.CheckedSet): New inner class. (checkedSortedMap(SortedMap<K,V>,Class<K>,Class<V>)): Implemented. (Collections.CheckedSortedMap): New inner class. (checkedSortedSet(SortedSet<E>,Class<E>)): Implemented. (Collections.CheckedSortedSet): New inner class.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog30
1 files changed, 30 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 50a0135e3..1eca15e9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,33 @@
+2005-09-19 Andrew John Hughes <gnu_andrew@member.fsf.org>
+
+ * java/util/Collections.java:
+ Fixes Bug #PR22921.
+ (emptySet()): Implemented.
+ (emptyList()): Implemented.
+ (emptyMap()): Implemented.
+ (rotate(List<?>,int)): Fixed signature.
+ (shuffle(List<?>)): Fixed signature.
+ (shuffle(List<?>,Random)): Fixed signature.
+ (frequency(Collection<?>,Object)): Documented.
+ (addAll(Collection<? super T>, T... a)): Implemented.
+ (disjoint(Collection<?>,Collection<?>)): Implemented.
+ (swap(List<?>,int,int)): Fixed signature.
+ (checkedCollection(Collection<E>,Class<E>)): Implemented.
+ (Collections.CheckedCollection): New inner class.
+ (Collections.CheckedIterator): New inner class.
+ (checkedList(List<E>, Class<E>)): Implemented.
+ (Collections.CheckedList): New inner class.
+ (Collections.CheckedRandomAccessList): New inner class.
+ (Collections.CheckedListIterator): New inner class.
+ (checkedMap(Map<K,V>,Class<K>,Class<V>)): Implemented.
+ (Collections.CheckedMap): New inner class.
+ (checkedSet(Set<E>,Class<E>)): Implemented.
+ (Collections.CheckedSet): New inner class.
+ (checkedSortedMap(SortedMap<K,V>,Class<K>,Class<V>)): Implemented.
+ (Collections.CheckedSortedMap): New inner class.
+ (checkedSortedSet(SortedSet<E>,Class<E>)): Implemented.
+ (Collections.CheckedSortedSet): New inner class.
+
2005-09-15 Tom Tromey <tromey@redhat.com>
* java/lang/EnumConstantNotPresentException.java: New file.