01: /*
02: * NEMESIS-FORUM.
03: * Copyright (C) 2002 David Laurent(lithium2@free.fr). All rights reserved.
04: *
05: * Copyright (c) 2000 The Apache Software Foundation. All rights reserved.
06: *
07: * Copyright (C) 2001 Yasna.com. All rights reserved.
08: *
09: * Copyright (C) 2000 CoolServlets.com. All rights reserved.
10: *
11: * NEMESIS-FORUM. is free software; you can redistribute it and/or
12: * modify it under the terms of the Apache Software License, Version 1.1,
13: * or (at your option) any later version.
14: *
15: * NEMESIS-FORUM core framework, NEMESIS-FORUM backoffice, NEMESIS-FORUM frontoffice
16: * application are parts of NEMESIS-FORUM and are distributed under
17: * same terms of licence.
18: *
19: *
20: * NEMESIS-FORUM includes software developed by the Apache Software Foundation (http://www.apache.org/)
21: * and software developed by CoolServlets.com (http://www.coolservlets.com).
22: * and software developed by Yasna.com (http://www.yasna.com).
23: *
24: */
25:
26: package org.nemesis.forum.util;
27:
28: /**
29: * Simplified hashtable implementation that uses int keys instead of Objects.
30: * All methods are unsynchronized, so not natively thread safe.<p>
31: *
32: * The implementation is inspired by the Hashtable class, but we tried not to
33: * rip it off.
34: */
35: public class IntHashtable {
36:
37: Entry[] entries;
38:
39: public IntHashtable(int initialSize) {
40: }
41:
42: /**
43: * Hashtable collision list.
44: */
45: private static class Entry {
46: int hash;
47: int key;
48: Object value;
49: Entry next;
50: }
51: }
|