[all packages]
[package net.sf.pizzacompiler.util]
[class hierarchy]
[index]
public abstract class net.sf.pizzacompiler.util.Dictionary<A, B>
(source file: /home/enno/source/tmp/pizza/main/src/net/sf/pizzacompiler/util/Dictionary.pizza)
java.lang.Object
|
+----net.sf.pizzacompiler.util.Dictionary<A, B>
The pure class interface.
public abstract class Dictionary<A, B>
-
Copyright (C) 1996-2001 Martin Odersky.
This software is distributed under the Artistic License. See
artistic.html or artistic.txt which came with this distribution.

Dictionary()
-

elements()
-
get(A)
-
isEmpty()
-
keys()
-
put(A, B)
-
remove(A)
-
size()
-

Dictionary
public Dictionary();

size
public abstract int size();
isEmpty
public abstract boolean isEmpty();
keys
public abstract Enumeration<A> keys();
elements
public abstract Enumeration<B> elements();
get
public abstract B get(A key);
put
public abstract B put(A key,
B value);
remove
public abstract B remove(A key);
[all packages]
[package net.sf.pizzacompiler.util]
[class hierarchy]
[index]
net.sf.pizzacompiler.util.Dictionary.html