summaryrefslogtreecommitdiff
path: root/sources/scalac/util/UniqueID.java
blob: 59e31a9de63cf2e025e4a2e4f9690d4b86723535 (plain) (blame)
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
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
**                                                                      **
\*                                                                      */

// $Id$

package scalac.util;

import java.util.*;

/**
 * Class to assign unique and small numbers to objects, based on their
 * identity.
 *
 * @author Michel Schinz
 * @version 1.0
 */

public class UniqueID {
    protected Map ids = new HashMap();

    public int id(Object obj) {
        if (! ids.containsKey(obj))
            ids.put(obj, new Integer(ids.size()));
        return ((Integer)ids.get(obj)).intValue();
    }
}