/[classpath]/classpath/java/util/HashMap.java
ViewVC logotype

Diff of /classpath/java/util/HashMap.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.28.2.5 by gnu_andrew, Thu Jan 13 11:14:34 2005 UTC revision 1.28.2.6 by gnu_andrew, Sat Feb 19 10:50:44 2005 UTC
# Line 1  Line 1 
1  /* HashMap.java -- a class providing a basic hashtable data structure,  /* HashMap.java -- a class providing a basic hashtable data structure,
2     mapping Object --> Object     mapping Object --> Object
3     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005  Free Software Foundation, Inc.
4    
5  This file is part of GNU Classpath.  This file is part of GNU Classpath.
6    
# Line 85  import java.io.Serializable; Line 85  import java.io.Serializable;
85   * @author Jon Zeppieri   * @author Jon Zeppieri
86   * @author Jochen Hoenicke   * @author Jochen Hoenicke
87   * @author Bryce McKinlay   * @author Bryce McKinlay
88   * @author Eric Blake <ebb9@email.byu.edu>   * @author Eric Blake (ebb9@email.byu.edu)
89   * @see Object#hashCode()   * @see Object#hashCode()
90   * @see Collection   * @see Collection
91   * @see Map   * @see Map
# Line 160  public class HashMap<K, V> extends Abstr Line 160  public class HashMap<K, V> extends Abstr
160     * Class to represent an entry in the hash table. Holds a single key-value     * Class to represent an entry in the hash table. Holds a single key-value
161     * pair. Package visible for use by subclass.     * pair. Package visible for use by subclass.
162     *     *
163     * @author Eric Blake <ebb9@email.byu.edu>     * @author Eric Blake (ebb9@email.byu.edu)
164     */     */
165    static class HashEntry<K, V> extends AbstractMap.BasicMapEntry<K, V>    static class HashEntry<K, V> extends AbstractMap.BasicMapEntry<K, V>
166    {    {

Legend:
Removed from v.1.28.2.5  
changed lines
  Added in v.1.28.2.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26