ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/AbstractMap.java
(Generate patch)

Comparing jsr166/src/main/java/util/AbstractMap.java (file contents):
Revision 1.14 by jsr166, Tue Jun 21 07:43:09 2005 UTC vs.
Revision 1.15 by jsr166, Fri Jun 24 20:44:49 2005 UTC

# Line 549 | Line 549 | public abstract class AbstractMap<K,V> i
549       * implementations. For example, it may be convenient to return
550       * arrays of <tt>SimpleEntry</tt> instances in method
551       * <tt>Map.entrySet().toArray</tt>
552 +     *
553 +     * @since 1.6
554       */
555      public static class SimpleEntry<K,V> implements Entry<K,V> {
556          private final K key;
# Line 639 | Line 641 | public abstract class AbstractMap<K,V> i
641       * does not support method <tt>setValue</tt>.  This class may be
642       * convenient in methods that return thread-safe snapshots of
643       * key-value mappings.
644 +     *
645 +     * @since 1.6
646       */
647      public static class SimpleImmutableEntry<K,V> implements Entry<K,V> {
648          private final K key;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines